Help for this page

Select Code to Download


  1. or download this
    print Dumper @results;
    
  2. or download this
    print Dumper \@results;
    
  3. or download this
    [
       [
    ...
           [ '10710', 'cars by the rodeo drive', '43', undef]
       ]
    ]
    
  4. or download this
    my $records = $result[0];
    for my $record ( @$records ) {
       print "\t [ @$record ]\n";
    }