Prophet05
Erfahrenes Mitglied
Hi,
ich verzweifele langsam an diesem script es soll einfach nur prüfen obbestimmte werte darin enthalten sind:
ich habe bereits die such funktionen, count usw. versucht.
mfg Prophet05
ich verzweifele langsam an diesem script es soll einfach nur prüfen obbestimmte werte darin enthalten sind:
Code:
<?php
$test['elemente'] = 4;
$test[0]['name'] = 'c';
$test[0]['passwort'] = 'c';
$test[1]['name'] = 'b';
$test[1]['passwort'] = 'b';
$test[2]['name'] = 'a';
$test[2]['passwort'] = 'a';
$test[3]['name'] = 'x';
$test[3]['passwort'] = 'x';
function suchen($name, $passwort)
{
for ($i = 0;$i < $test['elemente'];$i += 1)
{
if ($test[$i]['name'] == $name && $test[$i]['passwort'] == $passwort)
echo "Enthalten";
}
}
suchen('a','a');
?>
mfg Prophet05