Login   Register  
PHP Classes
elePHPant
Icontem

File: config.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2003-07-02 13:06
Size: 442 bytes
 

Contents

Class file image Download
<?php
/** 
  * @Author:  Paul Campbell <paul@campbell-multimedia.com>
  * @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 dbDBUSERDBPASSDBNAMEDBHOST );

?>