データベーステーブルに2つの通知を挿入するスクリプトがありますが、最初のメモを追加するだけで、2番目のメモは追加しません。私はそれらを交換しようとしましたが、それでも2つのうちの最初のものしか投稿しません.これが私のコードです:
<?php
$type = "---";
$title = "---";
$note1 = "Note 1";
$note2 = "Note 2";
?>
<?php
if($business1 !== ""){
$insert_note1_sql = "INSERT INTO notes (id, recipient, type, title, post, message, date) VALUES('$id', 'Business 1', '$type', '$title', '$event', '$note1', '$time')";
$insert_note1_res = mysqli_query($con, $insert_note1_sql);
};
?>
<?php
if($business2 !== ""){
$insert_note2_sql = "INSERT INTO notes (id, recipient, type, title, post, message, date) VALUES('$id', 'Business 2', '$type', '$title', '$event', '$note2', '$time')";
$insert_note2_res = mysqli_query($con, $insert_note2_sql);
};
?>
2番目のnotが投稿されていない理由を誰でも見ることができますか(両方とも!=="")?