Created
May 10, 2012 21:24
-
-
Save bkvirendra/2655999 to your computer and use it in GitHub Desktop.
DB Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('DB_SERVER', 'localhost'); | |
define('DB_USERNAME', ' '); // Your DB Username goes here | |
define('DB_PASSWORD', ' '); // Your DB PassWord Goes here | |
define('DB_DATABASE', ' '); // The name of the DB goes here | |
$connection = mysql_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD) or die(mysql_error()); | |
$database = mysql_select_db(DB_DATABASE) or die(mysql_error()); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment