Checking the values returned from the authentication prompt : Authentication « HTML « PHP






Checking the values returned from the authentication prompt

 
<?php
$username = 'jon_doe';
$password = 'JonDoe';
if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW'])) {
    header('WWW-Authenticate: Basic realm="Member Area"');
    header("HTTP/1.0 401 Unauthorized");
    echo "You must enter in a username and password combination!";
    exit;
}
elseif (strcmp($_SERVER['PHP_AUTH_USER'], $username) !== 0 ||
    strcmp($_SERVER['PHP_AUTH_PW'], $password) !== 0) {
    header('WWW-Authenticate: Basic realm="Member Area"');
    header("HTTP/1.0 401 Unauthorized");
    echo "Your username and password combination was incorrect!";
    exit;
}
echo("You have successfully logged in!");
?>
  
  








Related examples in the same category

1.Authentication Over HTTP
2.Basic authentication prompt
3.Get Users from users table
4.Enforcing Basic authentication
5.HTTP Authentication example
6.HTTP Authentication example forcing a new name/password
7.Hardcoding the username and password into a script
8.If user logged in
9.Only One Username and Password Is Valid
10.Usernames and Passwords Are Checked Against Data in a Database
11.Usernames and Passwords Are Checked Against Data in a File
12.Using HTTP authentication with a PHP script
13.Use database to store user name and password
14.The Username and Password Are Retrieved for Both Apache and IIS
15.Simple credentials checking:
16.User management with database