Help for this page

Select Code to Download


  1. or download this
    my @results;
    while (my @row = $sth->fetchrow_array) {
    ...
    } else {
       ...we got nothing...
    }
    
  2. or download this
    my $results = 0;
    while (my @row = $sth->fetchrow_array) {
    ...
    } else {
       ...we got nothing...
    }