Created
May 30, 2011 04:11
-
-
Save jedmund/998439 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* Database Constants | |
* | |
* These constants help Parchment connect to the database. | |
* | |
*/ | |
defined("DB_SERVER") ? null : | |
define("DB_SERVER", 'localhost'); | |
defined("DB_USER") ? null : | |
define("DB_USER", 'justin'); | |
defined("DB_PASS") ? null : | |
define("DB_PASS", 'pw'); | |
defined("DB_NAME") ? null : | |
define("DB_NAME", 'parchment'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment