<?php
/*
* Session Management for PHP3
*
* Copyright (c) 1998,1999 SH Online Dienst GmbH
* Boris Erdmann, Kristian Koehntopp
*
* $Id: prepend.php3,v 1.9.2.1 2000/03/23 11:23:59 kk Exp $
*
*/
if (!isset($_PHPLIB) or !is_array($_PHPLIB)) {
# Aren't we nice? We are prepending this everywhere
# we require or include something so you can fake
# include_path when hosted at provider that sucks.
$_PHPLIB["libdir"] = "./";
}
require($_PHPLIB["libdir"] . "db_pgsql.inc"); /* Change this to match your database. */
class DB_Gallery extends DB_Sql {
var $Host = "localhost";
var $Database = "phpRealGallery";
var $User = "phpRealGallery";
var $Password = "";
}
?>
|