Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("SELECT * FROM table");
    
    if($sth->execute()){
        printf "Executed Statement - returned (%s) rows\n", $sth->rows;
    }