gpt4 book ai didi

php - DELETE FROM 语句不起作用?

转载 作者:搜寻专家 更新时间:2023-10-30 21:45:49 25 4
gpt4 key购买 nike

我一直在努力使我的删除语句正常工作。

它应该是这样工作的:每当我按下删除按钮“commentDelete”时,它应该删除评论,评论 ID 等于发布者。

但是,它只会删除发布者发布的最新评论。我真的很困惑,无法弄清楚为什么。这是我试过的代码:

function commentsDelete($conn) {
if(isset($_POST['commentsDelete'])){
$commentID = $_POST['commentID'];

$sql = "DELETE FROM comments WHERE commentID='$commentID'";
$result = mysqli_query($conn, $sql);
header("Location: commentpage.php");
}
}

最佳答案

The commentID is a integer

如果 commentID 列是数字,那么您不应该与引用的文本字符串进行比较。改用这个:

$sql = "DELETE FROM comments WHERE commentID=$commentID";

关于php - DELETE FROM 语句不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41518562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com