当前位置:Gxlcms > PHP教程 > 为啥mysql客户端返回有结果,而php拿不到呢

为啥mysql客户端返回有结果,而php拿不到呢

时间:2021-07-01 10:21:17 帮助过:29人阅读

为什么mysql客户端返回有结果,而php 拿不到呢?
RT,我在mysql的客户端命令行上面执行SQL语句:
select count(*) as amount from main where id = 2;
可得到结果
+--------+
| amount |
+--------+
| 1 |
+--------+
但是在php程序里面
$sql1="select count(*) as amount from main where id = 2";
$reqult = mysql_query ( $sql1 );
echo $sql1;
$row = mysql_fetch_row ( $reqult );
$amount = $row [0];
这里的$sql1永远是空值!
而且我把$sql1换成select count(*) as amount from main; 这句又可以正常取到值,
请大侠帮小弟看哈这是个什么问题呗!
我都被这个小问题给弄晕了!
多谢! mysql php sql query


------解决方案--------------------
var_dump($row); //是什么结果

人气教程排行