Hallo,
ich bekomme hier einen Fehler und finde diesen nicht ;(
Der Fehler:
Warning: Cannot add header information - headers already sent by (output started at /usr/local/httpd/htdocs/cargooffice/login.php:11) in /usr/local/httpd/htdocs/cargooffice/login.php on line 32
Jemand eine idee ?
Danke
Jan
ich bekomme hier einen Fehler und finde diesen nicht ;(
PHP-Code:
<? if ((!isset($_POST['username'])) OR (!isset($_POST['password'])))
{
die ("Sorry, Sie müssen als Administrator angemeldet sein um diese Funktionen nutzen zu dürfen !");
}
mysql_connect($db_host,$db_user,$db_pass);
mysql_select_db($db_name);
$query = "SELECT PASS, LEVEL FROM zugriff WHERE NAME = '".$_POST['username']."'";
$result = mysql_query($query);
$zeile = mysql_fetch_array($result);
if (!$zeile)
{
die ("Dieser name existiert nicht !");
}
if ($zeile["PASS"] <> $_POST['password'])
{
die ("Das Password ist falsch !");
}
$LEVEL = $zeile["LEVEL"];
session_register('USERNAME');
session_register('LEVEL');
header ("Location:admin_login.php");
?>
Warning: Cannot add header information - headers already sent by (output started at /usr/local/httpd/htdocs/cargooffice/login.php:11) in /usr/local/httpd/htdocs/cargooffice/login.php on line 32
Jemand eine idee ?
Danke
Jan
Kommentar