How should I go about password protecting pages? I have found scripts, but they don't look very secure. Any hints? Thanks!
If you're hosting with Apache, I suggest using .htpasswd to protect your page. Using .htpasswd, any viewers are required to enter a username and password to see a page. This solution is best if you already know who is allowed to see the page - ie. static userbase. If you want people to be able to sign up - this won't work. Here's some useful links: "Using .htpasswd" - http://www.apacheweek.com/features/userauth ".htpasswd Generator" - http://www.htaccesstools.com/htpasswd-generator/
yeah, that's exactly the case. It's not about sign ups. I'll look into those links. Thank you very much!