/application/config/database.php
$db['default']['hostname'] = 'localhost'; // 호스트
$db['default']['username'] = 'test_user'; // 아이디
$db['default']['password'] = 'test_pass'; // 비밀번호
$db['default']['database'] = 'test'; // 디비명
$db['default']['dbdriver'] = 'mysql'; // 디비종류
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE; // 웹호스팅일 경우 접속 안되므로 FALSE
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8'; // 캐릭터셋
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
'php, codeigniter' 카테고리의 다른 글
index.php 주소 줄이기 (0) | 2014.10.08 |
---|---|
construct 선언하기(기본 라이브러리 로드) (0) | 2014.10.08 |
페이지 로딩 정보 함수들 (0) | 2014.10.08 |
도메인 기본 컨트롤러 선언 / 404 에러 컨트롤러 (0) | 2014.10.08 |
extract - get / post / server / cookie (0) | 2014.10.07 |