PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Paul C   PersistentObject   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Main Class File
Class: PersistentObject
Encapsulates a database table row in a class
Author: By
Last change:
Date: 21 years ago
Size: 442 bytes
 

Contents

Class file image Download
<?php
/**
  * @Author: Paul Campbell <[email protected]>
  * @Company: Campbell Multimedia <www.campbell-multimedia.com>
  * @Date: 2nd July 2003
  */

   
require_once( "PersistentObject.php" );
    require_once(
"customer_class.php" );
    require_once(
"db.php" );

define ( "DBUSER", "" );
define ( "DBPASS", "" );
define ( "DBNAME", "test" );
define ( "DBHOST", "localhost" );
$db = new db( DBUSER, DBPASS, DBNAME, DBHOST );

?>