Thread keys durcheinander (5 answers)
Opened by mho at 2006-02-13 17:13

mho
 2006-02-14 10:34
#34007 #34007
User since
2003-09-12
30 Artikel
BenutzerIn
[default_avatar]
Hallo

Code: (dl )
1
2
3
4
5
6
7
print map "<th>$_</th>\n", @{$sth->{NAME}};
print "</tr>\n";
while (my $arrayref = $sth->fetchrow_arrayref) {
print "<tr>\n";
print map "<td>$_</td>\n", map +(defined($_) ? $_ : 'NULL'), @$arrayref;
print "</tr>\n";
}


...funktioniert TipTop, danke!

View full thread keys durcheinander