fabian: Authentifizierung

Hi
Folgendes einfache Script zur Authentifizierung von usern funktioniert auf dem Srver, auf meinem privaten Rechner mit OmniHTTP aber nicht!
Wieso? php.ini? Windows?
Danke, Fabian

<?
$NAME_REQUIRED = "user";
$PW_REQUIRED = "pass";

function authenticate()
{
Header("WWW-authenticate: basic realm="XBox-headquarter Administrationsbereich"");
Header("HTTP/1.0 401 Unauthorized");
echo "<h1>401 - Nicht berechtigt</h1><br /><br /><b>Sie sind nicht berechtigt, diese Seiten zu sehen!</b>";
exit;
}

if (!isset($PHP_AUTH_USER)){
  authenticate();
}else{
  if(($NAME_REQUIRED == $PHP_AUTH_USER) && ($PW_REQUIRED == $PHP_AUTH_PW)){

}
  else{
    authenticate();
  }
}

?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Neues Dokument</title>
</head>
<body>
 Hallo <?php echo $PHP_AUTH_USER; ?>!
</body>
</html>