欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

为何总是Warning: mysql_fetch_object(): supplied argument is not a valid MySQL resul

程序员文章站 2022-06-03 20:02:00
...
为什么总是Warning: mysql_fetch_object(): supplied argument is not a valid MySQL resul
为什么总是

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in D:\AppServ1\www\forum\index.php on line 46


代码:
$id = $row["id"];
$res=mysql_query("select count(*) as total from reply where topic id='$id'");
$r = mysql_fetch_object($res);
大家帮帮忙

------解决方案--------------------
topic id='$id'" //这里错了吧
------解决方案--------------------
你把SQL语句放到MYSQL里面运行,看有没有结果
------解决方案--------------------
最后的$id用连字符拼接吧,别直接写到sql里
------解决方案--------------------
topic是另外一张表那得采用连接查询或者是多表符合查询
为何总是Warning: mysql_fetch_object(): supplied argument is not a valid MySQL resul

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 为何总是Warning: mysql_fetch_object(): supplied argument is not a valid MySQL resul
  • 专题推荐