Help for this page

Select Code to Download


  1. or download this
    $sth->prepare("SELECT * FROM db WHERE field < 2000");
    
    while (@row = $sth->fetch) {
        ...
    }
    
  2. or download this
    while ($row = $sth->fetchrow_hashref) { ...