Help for this page

Select Code to Download


  1. 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;
    
  2. or download this
    my @array=@{$sth->fetchall_arrayref};
    
  3. or download this
    $template->param(selscene => [ @array ] );