PHP 返回 0 行,而 phpmyadmin 返回 1 行
我的代码是
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 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?