123456789101112 |
- <?php
- return array(
- //'Configuration item'=>'Configuration values'
- 'DB_TYPE' => 'mysql', // tipe database
- 'DB_HOST' => 'localhost', // alamat server
- 'DB_NAME' => 'hello_world', // nama database
- 'DB_USER' => 'benchmarkdbuser', // nama pengguna
- 'DB_PWD' => 'benchmarkdbpass', // password
- 'DB_PORT' => 3306, // port
- 'DB_PREFIX' => '', // prefix
- );
- ?>
|