| 
<?php
return array(
 "sqlHost" => "localhost", // Set the IP or hostname of the database server you wish to connect to
 "sqlUser" => "dbUserName", // set the database user name you wish to use to connect to the database server
 "sqlDatabase" => "dbName", // Set the name of the database you wish to connect to
 "sqlPassword" => "dbPassword", // set the password for the username above
 "sqlPort" => 3306,
 "sqlPrefix" => ""
 );
 |