Derzeit bin ich dabei ein Login System zu schreiben was noch nicht richtig funktioniert. Sobald ich mich Einlogge und die Daten Richtig sind erhalte ich eine weiße seite von auth.php wo liegt evtl der Fehler ?
auth.php
<?php
$auth = false;
if (isset($_POST[name]) && isset($_POST[password])) {
mysql_connect('localhost', 'samp','zensiert') or die ('Unable to connect to server.');
mysql_select_db('samp') or die ('Unable to select database.');
$sql = "SELECT * FROM users WHERE name = '$_POST[name]' AND password=MD5('$_POST[password]')";
$result = mysql_query($sql) or die ('Unable to execute query.');
$num = mysql_numrows($result);
if ($num != 0) {
$auth = true;
}
}
if (! $auth) {
echo "Authorization Failed";
exit;
}
else if ($auth = true) {
$sql2 = "SELECT ACCESS FROM users WHERE name = '$_POST[name]'";
$result2 = mysql_query($sql2);
$row = mysql_fetch_array($result2, MYSQL_BOTH);
if ($row[0] == "Full")
{
$auth = "Full";
?>
<meta http-equiv="refresh" content="2;URL=http://ihatelearning.powercalling.net/full.php">
<?php
}
elseif ($row[0] == "View")
{
?>
<meta http-equiv="refresh" content="2;URL=http://www.dogpile.com">
<?php
}
elseif ($row[0] == "Useradmin")
{
$auth = "Useradmin";
?>
<meta http-equiv="refresh" content="2;URL=http://ihatelearning.powercalling.net/useradmin/useradmin.php">
<?php
}
}
setcookie("author", $auth);
?>