Help for this page

Select Code to Download


  1. or download this
    $sth->execute($id);
    my $row = $sth->fetch();
    ...
       # No more images
       ...
    }
    
  2. or download this
    my $row = selectrow_arrayref($stmt_or_sth, undef, $id);
    if ($row) {
    ...
       # No more images
       ...
    }