Re: [PHP] security login

2002-08-13 Thread Nicholas Mercier
At 04:12 PM 8/12/2002 +0100, Pag wrote: Here is my humble, but relatively effective solution for a low security site. Create a file called security.php and require it at the head of every secure page. This is the one I use. You are not logged in. Please do so."; echo "Login Here";

RE: [PHP] security login

2002-08-12 Thread Cal Evans
If it's simple security then you might want to use an .htaccess file instead of coding something. More complex solutions involve asking the user for credentials, validating those credentials and then storing something in the $_SESSION that indicates that this user has been validated. It can be s