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

PerlProfi
 2006-12-09 23:01
#9322 #9322
User since
2006-11-29
340 Artikel
BenutzerIn
[default_avatar]
Mit der Tabelle kann ich dir weiterhelfen.
Daraus:
Code: (dl )
1
2
3
4
5
6
7
8
print "carrier,boxno,listno,shipno,custno\n";
while (my $hash_ref = $sth->fetchrow_hashref) {
print "$hash_ref->{carrier},";
print "$hash_ref->{boxno},";
print "$hash_ref->{listno},";
print "$hash_ref->{shipno},";
print "$hash_ref->{custno}\n";
}


machst du einfach:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
print "<table border=1>\n".
" <th>carrier</th>\n".
" <th>boxno</th>\n".
" <th>listno</th>\n".
" <th>shipno</th>\n".
" <th>custno</th>\n";

while (my$hash_ref = $sth->fetchrow_hashref) {
print " <tr>\n";
print " <td>$hash_ref->{carrier}</td>\n";
print " <td>$hash_ref->{boxno}</td>\n";
print " <td>$hash_ref->{listno}</td>\n";
print " <td>$hash_ref->{shipno}</td>\n";
print " <td>$hash_ref->{custno}</td>\n";
print " </tr>\n";
}

print "</table>";


MfG PerlProfi

//EDIT: ptk's beitrag war noch nicht da als ich meinen geschrieben habe.\n\n

<!--EDIT|PerlProfi|1165698178-->

View full thread cgi Anfänerfrage: Listendarstellung mit MySQL