我在一个名为 db_config.php 的外部文件上定义了所有连接。这使我的类文件能够使用 db_config.php 文件进行连接。
但是,我想知道是否有人可以对以下错误有所了解。
SQL Retrieve Error: No database selected
这是指db_config.php 上的这行代码。
return array("host"=>"x", "username"=>"x", "password"=>"x", "dbname"=>"x" );
这是进行调用的函数
function openDB() {
$config = include_once("assets/configs/db_config.php");
$conn = mysqli_connect(
$config["host"] , $config["username"],
$config["password"], $config["dbname"]);
$this->conn = $conn;
return true;
}
我错过了什么?