also ich hab ein login geschrieben das funktioniert auch nur die else bedingung wird nicht angezeigt!
registrierung:
http://pfeiffer14.pf.funpic.de/tests/reg.html
login:
http://pfeiffer14.pf.funpic.de/tests/login.html
code für das login action:
registrierung:
http://pfeiffer14.pf.funpic.de/tests/reg.html
login:
http://pfeiffer14.pf.funpic.de/tests/login.html
code für das login action:
PHP-Code:
<?
include ("db.inc.php");
$Inhalt = $_POST["name1"];
$passwort = $_POST["pw1"];
$abfrage = "SELECT * FROM reg WHERE name LIKE
'$Inhalt' AND pw LIKE '$passwort'";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
if($Inhalt == "$row->name" and $passwort == "$row->pw")
{
echo "Zugriff erlaubt!";
}
else
{
echo "raus";
}
}
?>
Kommentar