当前位置:Gxlcms > PHP教程 > mysql_fetch_array():suppliedargumentisnotavalidMySQLresultresource解决方法

mysql_fetch_array():suppliedargumentisnotavalidMySQLresultresource解决方法

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

mysql_fetch_array(): supplied argument is not a valid MySQL result resource
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\myapacheweb\test\self_info.php on line 7
PHP code

mysql_connect("localhost","root","1"); 
    $query="select id from computer where user ='test2'";
    $result=mysql_query($query);
    
    echo "test2 使用了
"; while($row = mysql_fetch_array($result)) { echo $row['id']."开始时间".$row[starttime]."
"; }

求助啊

------解决方案--------------------
$query="select id from computer where user ='test2'";

echo 一下$query

把得到的SQL语句放在数据库里去执行一下,看能有没有数据。

这种问题一般都是
SQL语句有错误,
或者数据库里没有这个数据造成的


------解决方案--------------------
SQL语句错了!
------解决方案--------------------
我一般是把
$result=mysql_query($query);
写成:
$result=mysql_query($query,$conn);


------解决方案--------------------
你没有指定数据库吧?- -
$result=mysql_query($query);
这个改成
$result=mysql_db_query('数据库名',$query);

------解决方案--------------------
探讨

我一般是把
$result=mysql_query($query);
写成:
$result=mysql_query($query,$conn);

人气教程排行