我正在为我的应用程序创建一个 Web 安装程序。在安装程序中,我将允许用户输入服务器、用户名、密码和数据库名称的值。
现在使用这个值,我将如何验证我的应用程序是否可以与数据库建立连接
注意:我没有使用该config/database.php文件。相反,我将使用用户发布的数据并测试连接。如果成功,会将这些值写入config/database.php
我的控制器代码如下:
$host = $this->input->post('dbserver');
$username = $this->input->post('dbusername');
$password = $this->input->post('dbpassword');
$name = $this->input->post('dbname');
if(<can connect with the database using the above>) // <---- This is what I'm looking for
{
// write to the config/database.php file
}
千万里不及你
暮色呼如