| 
<?
 /*
 THIS CLASS USES PEAR DB
 PLEASE CUSTOMIZE DSN ARRAY TO SUIT YOUR NEEDS
 */
 
 
 
 if($_SERVER['HTTP_HOST']=='localhost') {
 
 define(PHP_TYPE, 'mysql');
 define(HOST_SPEC, 'localhost');
 define(DB, 'information_schema');
 define(USER, 'root');
 define(PWD, '');
 
 } else {
 
 define(PHP_TYPE, 'mysql');
 define(HOST_SPEC, 'localhost');
 define(DB, 'information_schema');
 define(USER, 'bitpack_jan');
 define(PWD, 'dubai');
 }
 
 
 
 
 
 
 
 
 
 
 
 
 ?>
 |