Wenn ich
das eine zu
Zitat
if($PlayerInfo == true && $PlayerInfo['Key'] == $_POST['password']))
Änder , kommt das hier
Parse error: syntax error, unexpected ')' in /is/htdocs/wp1191701_KGE8CDN33B/www/test/index.php on line 22
Code hier:
ZitatAlles anzeigen$PlayerInfo = $functions->GetPlayerInfo($_POST['username']);
if($PlayerInfo == true && $PlayerInfo['Key'] == $_POST['password'])) // << das ist die Line 22
{
$_SESSION['username'] = $_POST['username'];
}
else
{
echo startcontent();
echo title("Loginversuch");
echo '<p align=center><b>Benutzername oder Passwort falsch</b></p><meta http-equiv="refresh" content="3; URL=">';
echo endcontent();
include 'templates/navlogin.tpl';
include 'templates/footer.tpl';
die;
}
}