Quick Logging in Question

liunx

Guest
Help!! <br />
I have a Harry Potter site...It is almost finished, I need to know how to have it so people can log in to my site...does anyone know or know where i can find out?<br />
:confused:<!--content-->You really need a server side language. What do you have available?<br />
<br />
If all else fails you could look for a simple (and usually easily bypassed) javascript login script.<!--content-->You will need to research some server-side database programming.<br />
<br />
Traditionally, usernames and passwords are stored in a database. Your users will fill out a HTML form with their username and password. From there, your application will open the database and try to match the received username and password with an entry in the database.<br />
<br />
<!-- w --><a class="postlink" href="http://www.w3schools.com">www.w3schools.com</a><!-- w --> is a good resource.<br />
<br />
Regards,<br />
Andrew Buntine.<!--content-->if you have asp.net available then<br />
<!-- m --><a class="postlink" href="http://www.webreference.com/programming/asp/quasi/">http://www.webreference.com/programming/asp/quasi/</a><!-- m --><br />
that is an article I wrote. That is how to make a basic data driven login system (but it is not super secure, it does not use https/ssl w/ 128 bit encryption obviously, but it should do the trick).<!--content-->
 
Back
Top