错误:无法使用user @ host建立数据库连接

时间:2015-08-31 20:58:37

标签: php mysql database

以下是我的网站如何连接到mysql数据库,直到php升级到版本5.4

public function core() {        
  if (!@$this->dbCon = mysql_connect($this->host, $this->user,$this->password)) {
    exit('Error: Could not make a database connection using ' .
      $this->user . '@' . $this->host);
  }  

但现在,我得到Error: Could not make a database connectionz using user@host 如何使用PDO重写此代码?

1 个答案:

答案 0 :(得分:0)

不推荐使用mysql函数。尝试使用mysqli_connect函数。