- or download this
use strict;
use HTML::Template;
...
);
print Dumper \@array;
- or download this
<table>
<tmpl_loop rows>
...
</tr>
</tmpl_loop>
</table>
- or download this
my $rows = [ map {{ cells => $_ }} @array ];
print Dumper $rows;
- or download this
my $rows = [ map {{ cells => [ map {{ data => $_ }} @$_ ] }} @array ];
print Dumper $rows;
- or download this
use strict;
use HTML::Template;
...
</tr>
</tmpl_loop>
</table>