Help for this page

Select Code to Download


  1. or download this
    # This method returns a reference to an array of array-refs
    my $site = $sth->fetchall_arrayref;
    
  2. or download this
    # This method returns a reference to an array of hash-refs
    my $site = $sth->fetchall_arrayref( {} );
    
  3. or download this
    $template->param( view => $site );