Help for this page

Select Code to Download


  1. or download this
    
    my $allshows = $sth->fetchall_arrayref({}) };
    ...
                'number' => '217',
                'id' => '2'
                }];
    
  2. or download this
    push @$allshows, $sth->fetchall_arrayref({});
    ...
    ...
                'number' => '217',
                'id' => '2'
                }];
    
  3. or download this
    ...
    push @$allshows, @{ $sth->fetchall_arrayref({}) };
    ...
                'number' => '217',
                'id' => '2'
                };
    
  4. or download this
    ...
    $allshows[0] .= $sth->fetchall_arrayref({});
    ...
    print Dumper(\@allshows);
    
    $VAR1 = [  'ARRAY(0x83db738)ARRAY(0x843ef94)'  ];