| 
<?php
define('DB_SERVER', 'localhost'); //leave, usually it will be ok
 define('DB_SERVER_USERNAME', 'data base username'); //the name of the user authorized to open database
 define('DB_SERVER_PASSWORD', 'database password'); //the password of the user authorized to opendatabase
 define('DB_DATABASE','data base name');         //the name of the database
 ?>
 
 |