Created
February 6, 2020 13:13
-
-
Save Nav-Appaiya/a125c4362f82a8ee3b78b47f07a2f9d7 to your computer and use it in GitHub Desktop.
Example #1 Basic HTTP Authentication example
This file contains hidden or 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 | |
| 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