PHP错误Warning:mysql_query()解决方法
这篇文章主要介绍了PHP错误Warning:mysql_query()的解决方法,希望可以真正解决大家的问题,需要的朋友可以参考下
php提示错误:Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO)
代码:
link=mysql_connect($host,$user,$pw); mysql_select_db($db); } function query($sql){ mysql_query($sql); } function __destruct(){ mysql_close($this->link); //multi construct will cause error } // liehuo,net } $db=new mysqlClass(); $db=new mysqlClass(); $db->query("select * from user");
原因:
mysqlClass第二次初使化时,,先初使化mysqlClass,得到跟第一个$db相同的$this->link,然后调用__construct函数会把this->link关闭。
最后导致$db中mysql资源为空,弹出错误。
解决办法:
$db=$db?$db:new mysqlClass();
或者
$this->link=mysql_connect($host,$user,$pw,true);
希望提供的解决方法可以真正的帮助到大家。
上一篇: 为什么有些网站的版权不用©而用©?
下一篇: 解读PHP数组排序
推荐阅读
-
php Notice: Undefined index 错误提示解决方法
-
Cannot modify header information错误解决方法_PHP教程
-
PHP错误Warning:mysql_query()的解决方法
-
PHP编译安装中遇到的两个错误和解决方法_PHP
-
PHP异常Parse error: syntax error错误解决方法
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法_php技巧
-
PHP连接Access数据库常见错误及解决方法
-
php连接Access数据库错误及解决方法_PHP教程
-
PHP错误Warning:mysql_query()的解决方法
-
表单提交错误后返回内容消失问题的解决方法(PHP网站)