- or download this
<table>
<row>
...
<cell>Group 2 name
<cell>Email 5, Email 6, Email 7...
</table>
- or download this
print <<EOTableHeaders;
<table border="1" cellpadding="3" cellspacing="4">
...
}
</tr>
</table>
- or download this
for (my $i = 0; $i < (scalar(@{$all_groups}) - 1); $i++) {
...
print "\tEmail: " $all_groups->[$i][2] . "\n";
}