c47de27c11
darcs-hash:20080507164807-84dde-ef7d205a0fedca42064a337786d2f203cdcc5a45.gz
25 lines
469 B
PHP
25 lines
469 B
PHP
<?php
|
|
|
|
$dsn = array(
|
|
'phptype' => 'pgsql',
|
|
'username' => 'someuser',
|
|
'password' => 'apasswd',
|
|
'hostspec' => 'localhost',
|
|
'database' => 'thedb',
|
|
);
|
|
|
|
$options = array(
|
|
'debug' => 2,
|
|
'portability' => DB_PORTABILITY_ALL,
|
|
);
|
|
|
|
$db =& DB::connect($dsn, $options);
|
|
if (PEAR::isError($db)) {
|
|
die($db->getMessage());
|
|
}
|
|
|
|
$config['db'] =
|
|
array( 'username' => 'stoica',
|
|
'password' => 'replaceme',
|
|
|