Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 14 |
liveuser |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
define( 'DB_NAME', 'database_name_here' );
|
|
|
4 |
|
|
|
5 |
define( 'DB_USER', 'username_here' );
|
|
|
6 |
|
|
|
7 |
define( 'DB_PASSWORD', 'password_here' );
|
|
|
8 |
|
|
|
9 |
define( 'DB_HOST', 'localhost' );
|
|
|
10 |
|
|
|
11 |
define( 'DB_CHARSET', 'utf8' );
|
|
|
12 |
|
|
|
13 |
define( 'DB_COLLATE', '' );
|
|
|
14 |
|
|
|
15 |
?>
|