我想知道是否有人可以帮助我将其更改为mysql连接而不是mysqli
public function __construct() {
$this->dbConnection = new mysqli($this->_dbHost, $this->_dbUsername,
$this->_dbPassword, $this->_databaseName);
if ($this->dbConnection->connect_error) {
die('Connection error.');
}
}
它是教程的一部分,但我以前没有使用过mysqli而且无法解决它以满足我的需求。
干杯 强尼
答案 0 :(得分:0)
我不建议您使用mysql_ *函数,因为它们在较新版本的PHP中已被弃用。您应该使用mysqli或PDO来删除不需要的通知。
<?php
public function __construct() {
$this->dbConnection = mysql_connect($this->_dbHost,$this->_dbUsername,$this->_dbPassword);
if (!$this->dbConnection) {
die('Connection error.');
} else {
$db = mysql_select_db($this->databaseName, $this->dbConnection) OR die("database could not select" .mysql_error());
}
}
?>