Warning: mysql_close(): 7 is not a valid MySQL-Link resource in,該如何處理
來源:互聯網
上載者:User
Warning: mysql_close(): 7 is not a valid MySQL-Link resource in
我在一個介面裡面進行了兩次mysql資料庫操作.
1.介面布局分成左右兩塊,進入介面的時候顯示左側內容,進行一次資料庫操作。
2.點擊左側的submit,右側內容顯示,有進行一次資料庫操作。
我有一個資料庫類,在左邊new一次,在右側new一次。
進入頁面就會出現Warning: mysql_close(): 7 is not a valid MySQL-Link resource in E:\www\bk_hmsystem\backstage\db.php on line 22
如果我刪除左側的資料庫操作就不會出現這個問題。
mysql_close放在資料庫操作類的解構函式中,如下:
class db
{
private $host;
private $user;
private $pw;
private $con;
private $dbname;
function __construct($host,$user,$pw,$dbname)
{
$this->host=$host;
$this->user=$user;
$this->pw=$pw;
$this->dbname=$dbname;
$this->connect();
}
function connect()
{
$this->con=mysql_connect($this->host,$this->user,$this->pw);
if(!$this->con) die(mysql_error());
mysql_select_db($this->dbname,$this->con) or die(mysql_error());
}
function __destruct()
{
mysql_close($this->con);
}
function query($name,$table,$cond)
{
if(($name=="")&&($cond==""))
$sql="select * from $table";
else
{
if($name=="")
$sql="select * from $table where $cond";
else
{
if($cond=="")
$sql="select $name from $table";
else
$sql="select $name from $table where $cond";
}
}
$result=mysql_query($sql,$this->con);
if(!$result)
{
die (mysql_error());
}
else
return $result;
}
}
紅色的地方有錯.不明白為什嗎?