Skip to content

Instantly share code, notes, and snippets.

@jedmund
Created May 30, 2011 04:11
Show Gist options
  • Save jedmund/998439 to your computer and use it in GitHub Desktop.
Save jedmund/998439 to your computer and use it in GitHub Desktop.
<?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