我正在构建一个自定义 CMS,它使用一个类来做所有事情,我现在正在使用一个 MYSQL 连接函数。
现在我想为 mysqli 更改所有 mysql 函数。
但我无法让 mysqli 功能工作有人可以帮助我吗?
这是代码:
public function connect() {
// Set up connection details for the site
$con = mysql_connect($this->host, $this->username, $this->password);
if (!$con) {
die("ShadowCMS could not connect to the database: " . mysql_error());
}
// Set up the database
$db_select = mysql_select_db($this->db, $con);
if(!$db_select) {
die("ShadowCMS could not select a database: " . mysql_error());
}
}
如何将其更改为有效的 mysqli 连接功能?
我已经搜索了everywere,但我找不到任何有用的东西。