Quote:
Today at 08:08 AM Mist said this in Post #15
Ok that works pretty well.. i'm pretty sure i can modify that myself to work with a user database... however where do i change the code so for example it does something when its logged in...
I.e. displays a message "You are logged in" if the authentication works 
- miSt
|
PHP Code:
if(ini_get('register_globals') == false) {
extract($HTTP_SERVER_VARS);
}
if(!isset($PHP_AUTH_USER, $PHP_AUTH_PW) or $PHP_AUTH_USER != 'username' or $PHP_AUTH_PW != 'seekrit') {
header("HTTP/1.0 401 Authorization Required");
header('WWW-Authenticate: Basic realm="please login"');
die('You entered an incorrect username/password combination.');
}
echo "You are logged in.";