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