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; @hashrow{ qw[ Date Type Amount Ending_balance ] } = split '&', $_;

my %hashrow; @hashrow{Date} = $row[0]; @hashrow{Type} = $row[1]; @hashrow{Amount} = $row[2]; @hashrow{Ending_balance} = $row[3];