Click to See Complete Forum and Search --> : Login/Register page


tecmeister
06-17-2007, 08:16 PM
Hello everyone,

What is the html code to create a login and register page?
I would also like to know how to make it when user register if they are trying to use a username that someone has already used, how will i make it so it will tell them this?

Thanks for the information that any one will be able to give me.

felgall
06-17-2007, 08:36 PM
Which server side programming language are you going to use for this. HTML can only create the form fields to input the login details, it can't actually do anything with it except pass it to the server for processing.

tecmeister
06-17-2007, 08:40 PM
Well at the moment in not using any.
I just wanted to know how to do it for the future.
Also the reason for asking. I have done a few website for businesses and none of them have asked me to create a login/register page. So i thought i would just ask encase so i would know.

O i use dreamweaver if that helps.

felgall
06-17-2007, 09:35 PM
The form passes the login detais to a server side script and that script handles the rest. You can use any server side language that the server supports to do all of the processing. You just need to put the filename of that script into the action attribute of the form tag.