Thread $sth->fetchrow: will nicht so wie ich (21 answers)
Opened by pktm at 2004-01-03 16:31

Cremator
 2004-01-03 21:14
#35852 #35852
User since
2003-11-26
97 Artikel
BenutzerIn
[default_avatar]
Wenn Du unbedingt alles haben willst nimm fetchall_arrayref. Dann bekommst Du eine Referenz auf ein Array of Hashes zurueck:
Code: (dl )
1
2
3
4
$ref = $sth->fetchall_arrayref;
for ($i = 0; $i < scalar @{$ref}; $i++){
printf "Zeile %d - Key: %s Titel: %s\n", $i, $ref->[$i]->{'keyword'}, $ref->[$i]->{'titel'};
}

View full thread $sth->fetchrow: will nicht so wie ich