PHP Classes

File: init.php

Recommend this page to a friend!
  Classes of Randy Gerritse   IMDBSearch   init.php   Download  
File: init.php
Role: Auxiliary script
Content type: text/plain
Description: includes and initiates the required files (including config values and classes)
Class: IMDBSearch
Search the Internet Movie DataBase
Author: By
Last change:
Date: 20 years ago
Size: 487 bytes
 

Contents

Class file image Download
<?
/* Site initiation & global vars
    Don't modify without written authorization
    Created by: Randy Gerritse
    Email: randy@randy.nu
    ©2003, All rights reserved.
    ================================================================================ */

//include constanten
require("constanten.php");

//load classes
require("Connection.php");
require(
"Sql.php");
require(
"IMDBSearch.php");

require(
"lib-debug.php");

//create instances
$connection = new Connection();
$sql = new Sql();

?>