Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:尀appserv

2024-12-20 13:12:16
推荐回答(1个)
回答1:

两种情况

1、select count(*) from order 确定你这个有结果
2、确定你的数据库连接是否正常

这个位置改一下
$res = mysql_query("select count(*) from order");
if(is_resource($res)){
$total = mysql_fetch_array($res); //查询中条数
.....
}else{
echo 'not find data';
}