Help for this page

Select Code to Download


  1. or download this
    $dbh->connect(...);
    
    ...
    ($count)=$sth->fetchrow_array;
    
    $dbh->disconnect;
    
  2. or download this
    $dbh->connect(...);
    
    ...
    while(($count)=$sth->fetchrow_array) { ... }
    
    $dbh->disconnect;