こんにちは、前のページのチェックボックスを使用して選択された予約スロット時間をデータベースに追加する機能を作成しました。同時に、スロット時間が保存され、メール機能のページの下で使用できるようになります。
$savedData = array();
foreach ($_POST as $key=>$value)
{ $key = mysql_real_escape_string($key);
echo($key. "<br>"); // show times selected on previous page
mysql_query("INSERT INTO appointment(Patient_ID, Appointment_Date, Appointment_Time
, Practice_ID, Appointment_ID)
VALUES('$patid','$insertdate','$key','$pracid','$apptype')");
//To save the variables for later:
$savedData[] = $key;
}
ユーザーが選択したスロット時間を使用して、データベースに挿入されたときに自動生成された予約番号を識別する必要があります。使用しようとしたコードは次のとおりです。
$insertedapps = mysql_query("SELECT * FROM appointment
WHERE Appointment_Date='".$insertdate."'
AND Appointment_Time='".$key."'");
while($row3 = mysql_fetch_array($insertedapps))
{ $appno = $row3['Appointment_No.'];
}
メール機能:
$to = "$pemail";
$subject = "Booking Confirmation";
$message = "Hello $pfname
This e-mail is to confirm your $appname appointment has been booked for the below times for $insertdate at the the following time(s) below:
Appointment No: Appointment Time:
$appno[0] $savedData[0]
$appno[1] $savedData[1]
$appno[2] $savedData[2]
$appno[3] $savedData[3]
The above appointment(s) are booked at the $pracname practice
Should you wish to alter this appointment please login via our customer login page or contact us on $pracphone";
$from = "xxxxx@xxxx.xxxx";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
予約時間の印刷は問題ありませんが、予約番号の結果が得られません...誰かが間違っている場所を正しい方向に向けることができますか?