Rev 26 | Rev 43 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
<?php
// add php_library_v2 to include path. This assumes it is a subdirectory of the directory the config file is in
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . realpath( __DIR__ . '/php_library_v2' ) );
// database server parameters
define( 'DBSERVER', '127.0.0.1' );
define( 'DBUSER', 'camp2' );
define( 'DBPASS', 'camp2' );
define( 'DBNAME', 'camp2' );
// for debugging
define( 'DEBUG', false );
?>