http://www.perlmonks.org?node_id=1019609


in reply to Re: Using HTML Template to fill a 2-dimensional table
in thread Using HTML Template to fill a 2-dimensional table

my %hashrow = ( # ((( round Date => $row[0], Type => $row[1], Amount => $row[2], Ending_balance => $row[3], );

my %hashrow = ( Date => $row[0], Type => $row[1], Amount => $row[2], Ending_balance => $row[3], ); # ))) round

my $hashrow = { # {{{ curly Date => $row[0], Type => $row[1], Amount => $row[2], Ending_balance => $row[3], }; # }}} curly

push @transactions, { # {{{ curly Date => $row[0], Type => $row[1], Amount => $row[2], Ending_balance => $row[3], }; # }}} curly