diff options
author | arun <arun@nubati.net> | 2006-12-12 11:34:09 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-12 11:34:09 +0000 |
commit | 320ebe96e21e08d5fad1a4ccbef241d5defd92bc (patch) | |
tree | 3a6424b165811b0c823f1b8b1dff6c5de608bfba /db.php | |
parent | 6af8e19b862bc37a5a34239d53953d9dc5786d7c (diff) | |
download | e-DoKo-320ebe96e21e08d5fad1a4ccbef241d5defd92bc.tar.gz e-DoKo-320ebe96e21e08d5fad1a4ccbef241d5defd92bc.tar.bz2 e-DoKo-320ebe96e21e08d5fad1a4ccbef241d5defd92bc.zip |
added a config file (not under VC)
Diffstat (limited to 'db.php')
-rw-r--r-- | db.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,9 +6,9 @@ function DB_open() { - global $DB; - if ( $DB = mysql_connect('mysql.nubati.net','doko', '$DoKo#.') ) - mysql_select_db('dokodb') or die('Could not select database'); + global $DB,$DB_user,$DB_host,$DB_database,$DB_password; + if ( $DB = mysql_connect($DB_host,$DB_user, $DB_password) ) + mysql_select_db($DB_database) or die('Could not select database'); else die (mysql_error()); |