<?php
/*
* Parameters of database connection
*/
// Address of database server (IP format xxx.xxx.xxx.xxx) or 'localhost' if web server and mySQL server is the same machine
// Replace 'address_of_my_mySQL_server' with real address of your mySQL server
define("DB_HOST", "localhost");
// Username
define("DB_USER", "db_user_name");
// Password
define("DB_PASS", "db_password");
// Name of your mySQL database
define("DB_NAME", "db_name");
?>
|