Login   Register  
PHP Classes
elePHPant
Icontem

File: samples/config.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Tom Schaefer  >  SQL Parse and Compile  >  samples/config.inc.php  >  Download  
File: samples/config.inc.php
Role: Configuration script
Content type: text/plain
Description: config
Class: SQL Parse and Compile
Parse and compose SQL queries programatically
Author: By
Last change:
Date: 2008-12-03 12:41
Size: 495 bytes
 

Contents

Class file image Download
<?php

define
("SYSTEMKEY","x65R89sd");

define("DOT",'.');
define("DS",DIRECTORY_SEPARATOR);
define("BASEDIR",dirname(dirname(__FILE__))); // root directory of framework
define("INCLUDEDIR"BASEDIR); // directory where the includes reside
define("CLASSDIR"BASEDIR); // directory where the framework classes reside
define("SYSTEMDIR"BASEDIR); // directory where the system (core) classes reside

include_once(BASEDIR.DS."autoload.php");

spl_autoload_register('__autoload');