Skip to content

Instantly share code, notes, and snippets.

@zhunik
Created May 9, 2015 21:53
Show Gist options
  • Save zhunik/f031c1fe4f06d6143274 to your computer and use it in GitHub Desktop.
Save zhunik/f031c1fe4f06d6143274 to your computer and use it in GitHub Desktop.
simple php auth
<?php
$valid_passwords = array ("mario" => "carbonell");
$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