Help for this page

Select Code to Download


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