<?
$logok = FALSE;
if (isset($_login) and isset($_pass)) {
»» $fp = fopen("passwd.pwd", "r");
»» while ($line = fgets($fp, "r")) { // <------- "r" gibts hier nicht!!! weg damit
»» $arr = explode(",", $line);
»» if (($arr[0] == $_login) and ($arr[1] == $_pass)) {
»» $logok = TRUE;
»» break;
»» } /* end if */
»» }
}
if (!$logok) {
?>
<form method=post action=index.php>
Namen:<input type=text size=30 name=_login>Kennwort:<input type=password size=30 name=_pass>
<input type=submit value=Submit>
</form>
<? } ?>
<? if ($logok) { ?> <!-- schon mal was von ELSE gehört? //-->
Hihi
<? } ?>
was mache ich falsch???
Siehe Code.
cya
phpBadAss