Skip to content

Instantly share code, notes, and snippets.

@alemohamad
Created December 24, 2014 14:56
Show Gist options
  • Save alemohamad/824a7a6c7e2e775bca79 to your computer and use it in GitHub Desktop.
Save alemohamad/824a7a6c7e2e775bca79 to your computer and use it in GitHub Desktop.
Basic authorization with retries
<?php
$valid_passwords = array ("admin" => "12345");
$valid_users = array_keys($valid_passwords);
$user = $_SERVER['PHP_AUTH_USER'];
$pass = $_SERVER['PHP_AUTH_PW'];
$validated = (in_array($user, $valid_users)) && ($pass == $valid_passwords[$user]);
if (!$validated) {
header('WWW-Authenticate: Basic realm="My Realm"');
header('HTTP/1.0 401 Unauthorized');
die ("Not authorized");
}
// If arrives here, is a valid user.
echo "<p>Welcome $user.</p>";
echo "<p>Congratulation, you are into the system.</p>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment