Help for this page

Select Code to Download


  1. or download this
       while ( my @row = $dbQuery->fetchrow_array() ) {
          @info{@{$headings}} = @row;
       }
    
  2. or download this
       while ( my @row = $dbQuery->fetchrow_array() ) {
          foreach (@{$headings}) {
    ...
             } # if
          } # foreach
       } # while