【发布时间】:2017-08-02 17:51:15
【问题描述】:
我已经试过这个来建立本地数据库连接。但它给出了这个错误:
您在 config/database.php 文件中指定了无效的数据库连接组 (ci_test)。
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost', // pass this
'username' => 'root', // pass this
'password' => '', // pass this
'database' => 'ci_test', // pass this
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => TRUE,
'db_debug' => TRUE,
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array());
【问题讨论】:
-
你的 phpmyadmin 中是否有任何名称为 ci_test 的数据库?
-
请分享错误信息
标签: php html codeigniter