Thread cgi Anfänerfrage: Listendarstellung mit MySQL (6 answers)
Opened by rk-ger at 2006-12-09 22:23

renee
 2006-12-09 23:24
#9323 #9323
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Und das könnte man auch noch kürzer schreiben:

Code: (dl )
1
2
3
4
5
my @names = $sth->{NAMES};
print "<table border=1>\n".join("",map{'<th>'.$_.'<th>'}@names);
while(my @row = $sth->fetchrow_array()){
print "<tr>".join("",map{'<td>'.$_.'</td>'}@row)."</tr>";
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread cgi Anfänerfrage: Listendarstellung mit MySQL