Login   Register  
PHP Classes
elePHPant
Icontem

File: uploadManager/include/functions/ClassLoader.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ilya Nemihin  >  Upload Manager  >  uploadManager/include/functions/ClassLoader.php  >  Download  
File: uploadManager/include/functions/ClassLoader.php
Role: Application script
Content type: text/plain
Description: loader
Class: Upload Manager
Management of files uploaded via Web forms
Author: By
Last change:
Date: 2003-11-20 21:16
Size: 260 bytes
 

Contents

Class file image Download
<?php

function load_class$name ){
  global 
$include_root;
  
$filePath $include_root.$name;
  if ( 
file_exists$filePath ) ){
    require_once( 
$filePath );
  }
  else{
    echo 
'load_class: error load class "'.$name.'"';
    exit;
  }
}

?>