Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created February 6, 2020 13:13
Show Gist options
  • Select an option

  • Save Nav-Appaiya/a125c4362f82a8ee3b78b47f07a2f9d7 to your computer and use it in GitHub Desktop.

Select an option

Save Nav-Appaiya/a125c4362f82a8ee3b78b47f07a2f9d7 to your computer and use it in GitHub Desktop.
Example #1 Basic HTTP Authentication example
<?php
if (!isset($_SERVER['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';
exit;
} else {
echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>";
echo "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment