Home  >  Article  >  Backend Development  >  总是出现mysql_fetch_array(): supplied argument is not a valid MySQL result resource

总是出现mysql_fetch_array(): supplied argument is not a valid MySQL result resource

WBOY
WBOYOriginal
2016-06-23 14:02:11990browse

总是出现mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\的错误。请各位帮帮忙!
 
$sql = "select * from `topic` order by id  limit $start, $each_page";
mysql_query("set names 'gbk'");
    $result = mysql_query($sql);
  while (@$row=mysql_fetch_array($result))


回复讨论(解决方案)

查询失败!
$sql = "select * from `topic` order by id  limit  $start,  $each_page";
$start 和 $each_page 至少有一个不存在或值非法

直接输出你的sql
看看就知道了。

$result = mysql_query($sql) or die(mysql_error()); //这样报什么错了

检查下SQL语句

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:在哪运行PHP代码?Next article:fedora如何自学php?