in reply to CGI-Output Problems
...where @row contains a row of your data. Of course if you just have a document delimited by :'s, you may just want to check out the Text::CSV_XS module.... $sth->execute; print "<table>"; while (my @row = $sth->fetcharray) { print <<END_OF_TEXT; <tr><td>$row[0], $row[1]</td><td>$row[1]</td></tr> <tr><td colspan="2">$row[3]</td></tr> END_OF_TEXT } print "</table>";
|
|---|