PHP错误Warning:mysql_query()解决方法
程序员文章站
2023-11-18 14:59:16
php提示错误:warning: mysql_query() [function.mysql-query]: access denied for user 'odbc'@'...
php提示错误:warning: mysql_query() [function.mysql-query]: access denied for user 'odbc'@'localhost' (using password: no)
代码:
<?php class mysqlclass { function mysqlclass($host='localhost',$user='root',$pw='',$db='mysql') { $this->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);
希望提供的解决方法可以真正的帮助到大家。
上一篇: 浅谈php7的重大新特性
推荐阅读
-
nginx加php-fpm出现502 bad gateway错误的5种解决方法
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法
-
php编译安装常见错误大全和解决方法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP错误Warning:mysql_query()解决方法
-
PHP下打开phpMyAdmin出现403错误的问题解决方法
-
浅析Dos下运行php.exe,出现没有找到php_mbstring.dll 错误的解决方法
-
PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法
-
php提示Failed to write session data错误的解决方法