Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("DELETE FROM $holding_table WHERE year=? AND
    month=? AND day=? AND time_start=? AND time_end=? AND title=?");
    ...
    $sth->bind_param(5, "$key[5]");
    $sth->bind_param(6, "$key[6]");
    $sth->execute();
    
  2. or download this
    $sth = $dbh->prepare("DELETE FROM $holding_table WHERE year=? AND
    month=? AND day=? AND time_start=? AND time_end=? AND title=?");
    $sth->execute( @key );