- or download this
# make an array reference:
my $ref = \@rry;
...
If I have a function returning an arrey reference:
<code>
my $rows=$sth->fetchall_arrayref;
- or download this
my @array=@{$sth->fetchall_arrayref};
- or download this
$template->param(selscene => [ @array ] );