Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("something something ?, ?");
    $sth->execute(@args);
    
  2. or download this
    $place = "?, ?";
    $sth = $dbh->prepare("something something $place");
    $sth->execute(@args);