Created
May 9, 2015 21:53
-
-
Save zhunik/f031c1fe4f06d6143274 to your computer and use it in GitHub Desktop.
simple php auth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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