Help for this page

Select Code to Download


  1. or download this
        $rth=$dbh->prepare("select max(id) from zen order by id") 
            or die("Can't connect: ", $dbh->errstr);
    ...
    
        $tth->execute;
        $koan = $tth->fetchrow_array;
    
  2. or download this
    
        $tth=$dbh->prepare("select koan from zen order by rand() limit 1")
    + 
    ...
    
        $tth->execute;
        $koan = $tth->fetchrow_array;