我想让它,如果 $floor 和 $spot 已经在表中,则会出现一条错误消息,说明“spot taken”。到目前为止,它已成功发送了一封电子邮件,但如果表格中存在这些变量,我希望它显示一条错误消息,这样我就可以在发送电子邮件之前避免重复预订。
// Insert data into mysql
$sql="INSERT INTO $tbl_name(Confirmation, Fname, Lname, Gname, License, Floor, Spot )
VALUES('$confirm_code', '$fname', '$lname', '$gname', '$license', '$floor',
'$spot')";
$result=mysql_query($sql);
// if suceesfully inserted data into database, send confirmation link to email
if($result){
// ---------------- SEND MAIL FORM ----------------