config.php 372 B

123456789101112
  1. <?php
  2. return array(
  3. //'Configuration item'=>'Configuration values'
  4. 'DB_TYPE' => 'mysql', // tipe database
  5. 'DB_HOST' => 'localhost', // alamat server
  6. 'DB_NAME' => 'hello_world', // nama database
  7. 'DB_USER' => 'benchmarkdbuser', // nama pengguna
  8. 'DB_PWD' => 'benchmarkdbpass', // password
  9. 'DB_PORT' => 3306, // port
  10. 'DB_PREFIX' => '', // prefix
  11. );
  12. ?>