Login
Insert your access data !
members only
memo
|
Comments
There are many possible variants to the performance of this script
By adding for example , at the beginning of the login file , the same code as in members...php , the logged user will automatically be re-directed to members...php :
session_start();
if(isset($valid_member) && isset($PHPSESSID))
{header("Location:http:/ev/@/session/members...php");}
But then the page win_authenticate.php ( this very page is included into pw.php ) , would not be accessible after a convalidated login , wherein you could set some general info for the user to re-read like it is here.
|