I have recently started learning PHP. I made a basic website and wanted to basically password it. I'd appreciate it if someone could tell me why this doesn't work. I know it doesn't work because I've tried it; I just don't understand why.
<?php
$user='user';
$pass='pass';
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm='.'hello');
if($_SERVER['PHP_AUTH_USER']==$user && $_SERVER['PHP_AUTH_PW']==$pass)
echo 'Authorized';
else
exit('Exiting');
?>
REST OF WEBSITE
I know the 'correct' way of doing it is like this:
<?php
if(!isset($_SERVER['PHP_AUTH_USER']))
{
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm='.'hello');
exit('Exiting');
}
else
{
$user='user';
$pass='pass';
if($_SERVER['PHP_AUTH_USER']==$user && $_SERVER['PHP_AUTH_PW']==$pass)
echo 'Authorised';
else
{
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm='.'hello');
exit('Exiting');
}
}
?>
REST OF WEBSITE
I'd appreciate it if someone could atleast point me in the right direction.
Thanks for your time.

PHP_AUTH_USERand_PWare only present for themod_phpsetup, not on F/CGI configurations. – mario Jan 7 '12 at 15:53