2 つのクエリを作成し、PDO を使用して 1 つの PHP 関数内で実行することは可能ですか?
私のコードは次のようになりますが、変数が混同されていると思います。
$query = $this->db->prepare("REPLACE INTO `content` SET `id` = ?, `user_id` = ?, `date` = ?, `type` = ?, `starttime` = ?, `endtime` = ?, `breaktime` = ?, `worktime` = ?, `za` = ?");
$query->bindValue(1, $setcontentid);
$query->bindValue(2, $user_id);
$query->bindValue(3, $currentdate);
$query->bindValue(4, $settypedropdown);
$query->bindValue(5, $starttime);
$query->bindValue(6, $endtime);
$query->bindValue(7, $breaktime);
$query->bindValue(8, $worktime);
$query->bindValue(9, $za);
$queryusr = $this->db->prepare("UPDATE `users` SET `current_time_saldo` = ?, `current_holiday_saldo` = ? WHERE `id` = ? ");
$queryusr->bindValue(1, $currenttimesaldo);
$queryusr->bindValue(2, $urlaub);
$queryusr->bindValue(3, $user_id);
try{
$query->execute();
$queryusr->execute();
} catch(PDOException $e){
die($e->getMessage());
}