[MySql][PHP] 트랜잭션, transaction
/* Start transaction */ mysqli_begin_transaction($db_connect); try{ $query = "INSERT INTO `board` SET "; $query.= "`title` = '$title', "; $query.= "`contents` = '$new_contents', "; $query.= "`state` = '$state', "; $query.= "`writer_id`…
0 Comments
2023년 10월 18일