Kolibri814
Mitglied
Hallo,
kann mir bitte einer helfen.
Ich versteh einfach nicht warum ich immer wieder auf der "anmeldung.php" lande obwohl ich das Passwort und den Nick richtig eingebe.
Hier das Skript dazu:
<?php
session_start();
if (isset($nick))
{
$sql = "select
id,
from
anmeldung
where
nick='$nick'
and
pwd='$pwd'";
$result = mysql_query($sql) or die(mysql_error());
if (!($row = mysql_fetch_row($result)))
{
header("Location:
http://".$_SERVER['HTTP_HOST']
."/login.php?meldung=Anmeldung konnte nicht erfolgen");
}
else
{
$_SESSION['angemeldet']="ja";
$_SESSION['id']=$row[0];
}
}
else if($_SESSION['angemeldet']!="ja")
{
header("Location: http://".$_SERVER['HTTP_HOST']
."/anmeldung.php");
}
?>
Vielen Dank für eure Hilfe.
kann mir bitte einer helfen.
Ich versteh einfach nicht warum ich immer wieder auf der "anmeldung.php" lande obwohl ich das Passwort und den Nick richtig eingebe.
Hier das Skript dazu:
<?php
session_start();
if (isset($nick))
{
$sql = "select
id,
from
anmeldung
where
nick='$nick'
and
pwd='$pwd'";
$result = mysql_query($sql) or die(mysql_error());
if (!($row = mysql_fetch_row($result)))
{
header("Location:
http://".$_SERVER['HTTP_HOST']
."/login.php?meldung=Anmeldung konnte nicht erfolgen");
}
else
{
$_SESSION['angemeldet']="ja";
$_SESSION['id']=$row[0];
}
}
else if($_SESSION['angemeldet']!="ja")
{
header("Location: http://".$_SERVER['HTTP_HOST']
."/anmeldung.php");
}
?>
Vielen Dank für eure Hilfe.