PHP Classes

File: prepend.php3

Recommend this page to a friend!
  Classes of Thomas Uttenthaler   phpRealGallery   prepend.php3   Download  
File: prepend.php3
Role: ???
Content type: text/plain
Description: From the PHP Base Library
Class: phpRealGallery
Author: By
Last change:
Date: 23 years ago
Size: 738 bytes
 

Contents

Class file image Download
<?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 = ""; } ?>