Prompt Browser password dialog : Browser Password Dialog : Login Authentication PHP Source Code


PHP Source Code » Login Authentication » Browser Password Dialog »

 

Prompt Browser password dialog



<?php
   if (($_SERVER['PHP_AUTH_USER'] != 'specialuser') || ($_SERVER['PHP_AUTH_PW'] != 'secretpassword')) {
      header('WWW-Authenticate: Basic Realm="Secret Stash"');
      header('HTTP/1.0 401 Unauthorized');
      print('You must provide the proper credentials!');
      exit;
   }
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Login Authentication
» Browser Password Dialog