gpt4 book ai didi

php - mysql_num_rows 的问题

转载 作者:行者123 更新时间:2023-11-29 14:56:22 25 4
gpt4 key购买 nike

出于某种原因,我无法理解我在 mysql_num_rows 方面遇到的麻烦。

脚本如下:

$notquery = 'SELECT * FROM notification WHERE uid = 1 AND read = 0 
AND tipo = post
OR tipo = subpost OR tipo = logros';

$notQuery = (mysql_query($notquery));

$num_rows = mysql_num_rows($notQuery);

错误:

Warning:  mysql_num_rows(): supplied argument is not a valid MySQL result resource

最佳答案

这可能是因为您在查询执行过程中出现错误。
尝试添加 or die(mysql_error()) 来调试出现的问题...

将代码更新为:
$notQuery = mysql_query($notquery) 或 die(mysql_error());

关于php - mysql_num_rows 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4528711/

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