in reply to Using HTML Template to fill a 2-dimensional table
...edit...
:)
my @names = qw[ Date Type Amount Ending_balance ] ; my @transactions; ... while ... my @row = split '&', $_; my %hashrow; @hashrow{ @names } = @row; push @transactions, \%hashrow ... $template->param(TRANSACTIONS => \@transactions );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using HTML Template to fill a 2-dimensional table
by Anonymous Monk on Feb 19, 2013 at 16:03 UTC | |
|
Re^2: Using HTML Template to fill a 2-dimensional table
by Anonymous Monk on Feb 19, 2013 at 16:06 UTC |