123456789101112131415161718192021222324 |
- <?php
- /*
- *---------------------------------------------------------------
- * Database configuration
- *---------------------------------------------------------------
- */
- return array(
- /*
- * the default database
- */
- 'main' => array(
- // selected database
- 'db' => 'localhost',
-
- // driver
- 'driver' => 'mysql',
-
- // auth
- 'host' => '127.0.0.1',
- 'user' => 'root',
- 'pass' => '',
- 'charset' => 'utf8'
- ),
- );
|