<?php
if (isset($_SERVER['PHP_AUTH_USER'])!='pukar' && isset($_SERVER['PHP_AUTH_PW'])!='rampukar') {
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>";
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<p>Hello New World</p>
</body>
</html>`
Output:
0 comments:
Post a Comment