What are some good ways for Logining & Passwords* on a website?

MainFramed

Diamond Member
May 29, 2002
5,981
1
0
Someone said i need to skip the java script stuff and stick with the server biased stuff. Can anyone ellaborate on that? How can i setup a website with multi login's?
 

Adul

Elite Member
Oct 9, 1999
32,999
44
91
danny.tangtam.com
simpliest method is the use of .htaccess and .htpasswd file hidden below root. this will protect an entire directory. Next step up is using the .htaccess to talk to a mysql DB, the there is just going full out SQL authentication with a login page and a SQL DB. Off course you would want to at least md5 your passwords to encrypt them.

The above is assuming a *nix platform and apache + PHP is installed.