Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare('SELECT foo,bar,baz FROM widget WHERE foo=? AND b
    +ar=? AND baz=?');
    $sth->execute($foo,$bar,$baz);
    
  2. or download this
    $sth = $dbh->prepare('SELECT foo,bar,baz FROM widget WHERE foo=? OR ba
    +r=? OR baz=?');
    $sth->execute($str,$str,$str);