';
}
else
{
//Send headers to cause a browser to request
//username and password from user
header('WWW-Authenticate: Basic realm="INFO202: authentification required"');
header("HTTP/1.0 401 Unauthorized");
//Show failure text, which browsers usually
//show only after several failed attempts
echo 'OOPS';
}
?>