in reply to Re: Repetitive HTML data
in thread Repetitive HTML data

Maybe I'm reading this wrong, but seems like you have multiple rows of stuff you want to display. How 'bout this:
my $table = "<table>"; foreach my $row_of_stuff (@rows_of_stuff) { $table .= <<EOT; <tr> <td>$row_of_stuff</td> </tr> EOT } $table .= "</table>";
Does this help?