Help for this page

Select Code to Download


  1. or download this
    while(@results = $sth -> fetchrow_array)
    {
    ...
      $SearchResults[$index]{'index'} = $index;
      $SearchResults{'count'} += 1;
    }
    
  2. or download this
    {
      my $i = {};
      @SearchResults = @{$sth->fetchall_arrayref($i)};
      $SearchResults{count} = ++$#SearchResults;
    }