mysql_fetch_array(): supplied argument is not a valid MySQL result resource解决方法
WBOYOriginal
2016-06-13 10:12:061075Durchsuche
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
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->mysql_connect("localhost","root","1"); $query="select id from computer where user ='test2'"; $result=mysql_query($query); echo "test2 使用了<br>"; while($row = mysql_fetch_array($result)) { echo $row['id']."开始时间".$row[starttime]."<br>"; }
求助啊
------解决方案-------------------- $query="select id from computer where user ='test2'";
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn