Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks for looking!... my @query_output;my $new_row=(); while ( my $row = $data_handle->fetchrow_hashref ){ #push @query_output, $row; $new_row = "First:", $row->{'NAME_ONE'}, " Last: ", $row->{'NAME_TW +O'}, " CITY: " , $row->{'CITY'}, "ZIP:" ,$row->{'ZIP'}; push @query_output, $new_row; } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Format values into a hash question
by roboticus (Chancellor) on Mar 05, 2013 at 17:36 UTC | |
|
Re: Format values into a hash question
by aitap (Curate) on Mar 05, 2013 at 17:47 UTC | |
|
Re: Format values into a hash question
by 7stud (Deacon) on Mar 06, 2013 at 07:52 UTC |