mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
16 lines
350 B
PHP
16 lines
350 B
PHP
<?php
|
|
require_once($config['base_path'].'/includes/contrib/adodb/adodb.inc.php');
|
|
|
|
function NewDBConnection(){
|
|
global $config;
|
|
|
|
$db = NewADOConnection($config['db_dsn']);
|
|
if ($config['debug']){
|
|
$db->debug = true;
|
|
}
|
|
if (!$db) {
|
|
trigger_error("Database server unavailable.", E_USER_ERROR);
|
|
}
|
|
return $db;
|
|
}
|
|
?>
|