Thomas G.: mysql_query --> list()=each() : Was mach ich falsch

Beitrag lesen

Hallo,

ich habe folgenden Code:

$typtxt = (mysql_query("select * from pk_types where id = '$at_typ'"));

/*ZEILE 61*/ while(list($id, $typ) = each(mysql_fetch_row($typtxt)))
{
   print("Typ der Attacke: $typ");
}

hierbei ist dazuzusagen, dass das Ergebnis nur 1 Zeile hat, vielleicht liegt es daran ...

als Fehlermeldung bekomme ich: Warning: Variable passed to each() is not an array or object in /home/thgraf01/htdocs/pk/pokedex/attacken/effect.php on line 61

ich hoffe es kann mir jemand helfeb
vielen dank im Voraus

Thomas G.