[PHP/CodeIgniter] DB 연결
·
PHP
DB 연결 설정# application/config/database.php$db['default'] = array( 'dsn' => '', 'hostname' => 'localhost', 'username' => '사용자명', 'password' => '비밀번호', 'database' => '사용할 DB명', 'dbdriver' => 'mysqli', 'dbprefix' => '', 'pconnect' => FALSE, 'db_debug' => (ENVIRONMENT !== 'production'), 'cache_on' => FALSE, 'cachedir' => '', 'char_set' => 'utf8', 'dbcollat' => 'utf8_general_ci', 'swap_pre' => '', 'e..