in reply to Re^3: Formatting JSON the right way
in thread Formatting JSON the right way
while (my $row = $data_handle->fetchrow_hashref()) { push( @{$returned_data{'name'}}, $row->{name} ); push( @{$returned_data{'city'}}, $row->{city} ); push( @{$returned_data{'state'}}, $row->{state} ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Formatting JSON the right way
by scorpio17 (Canon) on Aug 20, 2014 at 15:30 UTC |