in reply to Re: Combining two references
in thread Combining two references
my $all; push @{ $all }, @$data1, @$data2; foreach my $row (@$all) { my $name = $row->{ NAME }; my $date = $row->{ DATE }; my $number = $row->{ NUMBER }; my $car1 = $row->{ CAR1 }; my $car2 = $row->{ CAR2 }; my $car3 = $row->{ CAR3 }; warn Dumper $name,$date,$number,$car1,$car2,$car3; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Combining two references
by stevieb (Canon) on Jun 08, 2015 at 18:11 UTC | |
by Anonymous Monk on Jun 08, 2015 at 19:39 UTC | |
by stevieb (Canon) on Jun 08, 2015 at 20:14 UTC | |
by Anonymous Monk on Jun 08, 2015 at 18:55 UTC | |
by stevieb (Canon) on Jun 08, 2015 at 19:04 UTC |