horst: mal wieder pw-abfrage aus txt

Beitrag lesen

HI,

probiers mal hiermit... ist allerdings nicht "gut" programmiert

gruss
horst

<?php
$pruef = 0;

$fcontents = file ('mitglieder.txt');

while (list ($key, $value) = each ($fcontents)) {
 $array = explode("$$$", $value);
 $user1 = trim($array[0]);
 $pw1 = trim($array[1]);
 if($user == $user1 && $pw == $pw1)
   $pruef = 1;
 array_splice ($array, 0);
}

if($pruef == 1)
  require ("abl_insider.html");

else
  require ("abl_mitgliederlogin_fehl.html");

?>