Home  >  Article  >  Backend Development  >  不知所错,在家帮小弟我看看这是咋回事

不知所错,在家帮小弟我看看这是咋回事

WBOY
WBOYOriginal
2016-06-13 12:14:17888browse

不知所错,在家帮我看看这是怎么回事啊
性高采烈的 在本地PHP5.3.3环境 中写完了一个网站程序。

本地测试一点问题都没有。 上传到服务器上。问题就出来了。服务器也是5.3的

我自已写了一个简单的类
class db{
function sql($sql=''){
global $conn; 
$query = mysql_query($sql);
$rs = mysql_fetch_array($query);  这里是13行
return $rs;
mysql_free_result($query);

}
$db=new db;

在本地没有报错。上传服务器就报错啊。
PHP Warning:  mysql_fetch_array() expects parameter 1 to be resource, boolean given in on line 13

第13行
------解决思路----------------------
12 行
$query = mysql_query($sql) or die(mysql_error());

看看才知道

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