php 提示Warning: mysql_fetch_array() expects
程序员文章站
2024-02-05 11:01:52
...
在mysql数据库连接时碰到Warning: mysql_fetch_array() expects ...错误提示,根据我的经验这个是sql返回的query为空了,我们没有加己判断直接使用了mysql_fetch_array()函数导致的下面我们一起来看问题解决方案。
实例代码如下:
include("conn.php"); if(!emptyempty($_GET['id'])){ $sql="select * from news where `id`='".$_GET['id']."'"; $query=mysql_query($sql); $rs = mysql_fetch_array($query); }
提示错误了:Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in F:xmappwww.phprm.commylibrarysearch_result.php on line 32
对代码进行修改,如下:
if(!emptyempty($_GET['id'])){ $sql="select * from news where `id`='".$_GET['id']."'"; $query=mysql_query($sql); if( mysql_num_rows( $query ) { $rs = mysql_fetch_array($query); } else { mysql_error(); } }
这样就会看到mysql错误信息了,结果是sql语句有问题了,把sql语句进行修改就可以了.
总结:导致这类错误是我们语法不规范了,如果要处理只有对sql进行一条条输出处理或在mysql_query(sql) or die(mysql_error()) 这样来处理.
教程网址:
欢迎收藏∩_∩但请保留本文链接。
推荐阅读
-
php 提示Warning: mysql_fetch_array() expects
-
php提示PHP Warning: date(): It is not safe to rely on the......错误的解决办法
-
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given i解决办法
-
php提示Warning:mysql_fetch_array() expects的解决方法
-
php提示异常 mysql_fetch_array() expects parameter 1 to be resource, boolean given
-
phpmyadmin安装时提示:Warning: require_once(./libraries/common.inc_PHP教程
-
Warning: mysql_fetch_array() expects parameter 1 to be resou_MySQL
-
php 提示Warning: mysql
-
Laravel访问出错提示:`Warning: require(/vendor/autoload.php): failed to open stream: No such file or di解决方法
-
Laravel访问出错提示:`Warning: require(/vendor/autoload.php): failed to open stream: No such file or di解决方法