我对 PHP 有点陌生,但目前我正在学习基于它的课程。
我有一个表单,用户将在其中输入他们的电子邮件地址,以便将其从电子邮件列表中删除。
我试图if else
声明,当他们的电子邮件不在数据库中时,它会出现“列表中不存在”的错误。
正如您可能看到的那样,该脚本不起作用。
如何查看查询是否成功,然后向用户返回适当的消息?
$email = $_POST['email'];
$dbc = mysqli_connect(censored)
or die('error connecting to the database');
$query = "DELETE FROM email_list WHERE email='$email'";
$result = mysqli_query($dbc, $query)
or die('Error Querying the database');
if ($result == 0) {
echo $email . ' do not exist in the list';
}
else {
echo $email . ' is deleted form the list';
}
mysqli_close($dbc);