我是 PHP 和 Web 服务器的新手,我打算使用 PHP 创建一个网站。我找到了一个使用 mysqli 的免费登录脚本。每次我进入页面时都说我没有mysqli?我正在使用 PHP3 运行 Apache。因此,脚本的 mysqli 部分是:
// if the connection is successfully established
if($conn = new mysqli($this->conn_datas['localhost'], $this->conn_datas['daztestc_testdaz'], $this->conn_datas['dj2403ms81'], $this->conn_datas['daztestc_daztest'])) {
$sql = "SET NAMES 'utf8'";
$conn->query($sql);
$this->conn = $conn; // add the connection in the $conn property
}