HTTP Authentication example : Authentication « HTML « PHP






HTTP Authentication example

 
<?php
if(!isset($PHP_AUTH_USER)) {
    Header("WWW-Authenticate: Basic realm=\"My Realm\"");
    Header("HTTP/1.0 401 Unauthorized");
    echo "Text to send if user hits Cancel button\n";
    exit;
} else {
    echo "Hello $PHP_AUTH_USER.<P>";
    echo "You entered $PHP_AUTH_PW as your password.<P>";
}
?>
  
  








Related examples in the same category

1.Authentication Over HTTP
2.Basic authentication prompt
3.Checking the values returned from the authentication prompt
4.Get Users from users table
5.Enforcing Basic authentication
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