-1

我想让它,如果 $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 ----------------
4

2 回答 2

-1
if($result === FALSE)
{
    die("MySql-Query failed.");
} else {
   //send mail
}
于 2013-07-10T14:50:46.547 回答
-1

您还可以检查 mysql_error() 值。

if(mysql_error() != ""){
    //There is an error
    Die(mysql_error());
}
于 2013-07-10T14:57:11.183 回答