Password Protection

C

carmen

Sure, you can make your password system as rigorous or
vulnerable to entry as you'd like. One of the least
protected methods, though easy to employ, is spelled out
at the following URL, complete with code and simple
instructions:

http://www.dynamicdrive.com/dynamicindex9/password.htm

For something more robust that authenticates against a
database, go to:

http://www.4guysfromrolla.com/webtech/050499-1.shtml

I actually have used the one from 4guysfromrolla, but I
used a DSN connection to an Access database (where all my
usernames and passwords are stored). It took some
experimenting to get the code right, but it works great.
 
Top