PHP 返回 0 行,而 phpmyadmin 返回 1 行

发布于 2025-01-08 20:13:21 字数 418 浏览 1 评论 0原文

我的代码是

<?php 
include 'includes/config.php';  
 $fetch = "SELECT *
FROM `status_comments`
WHERE status_id =4
AND item_poster = 'LUcase'";
 echo $fetch;
    $runfetch = mysqli_query($link, $fetch) or die(mysqli_error($link));
    while ($comments = mysqli_fetch_assoc($runfetch)){ echo "woot"; }
?>

我回显 $fetch 如你所见,我使用回显内容在 phpmyadmin 中查询,它返回 1 行。 但在 php 中它返回 0 行。 可能是什么问题?

my code is

<?php 
include 'includes/config.php';  
 $fetch = "SELECT *
FROM `status_comments`
WHERE status_id =4
AND item_poster = 'LUcase'";
 echo $fetch;
    $runfetch = mysqli_query($link, $fetch) or die(mysqli_error($link));
    while ($comments = mysqli_fetch_assoc($runfetch)){ echo "woot"; }
?>

im echoing $fetch as you can see, and i use whats echoed to query in phpmyadmin and it returns 1 row.
But however in php it returns 0 rows.
What can be the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

才能让你更想念 2025-01-15 20:13:21

尝试使用 mysqli_error() 来指示您的 sql 错误(如果有)。
您还可以附上您的包含 php 文件吗?

Try to use mysqli_error() to indicate your sql error if there is.
Can you attach also your include php file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文