Index.php

From Sum-e Wiki

Jump to: navigation, search
<?php

require_once( 'config/config.php' );

function __autoload( $name )
{
    $path_array = array( 'class/', 'entity/', 'controllers/' );

    foreach( $path_array as $path )
    {   
        if( file_exists( 'class/'. $name .'.class.php' ) )
        {
            include_once( 'class/'. $name .'.class.php' );
            return true;
        }
    }
}

session_start();
$www = new IndexController();
$www->Dispatch();

Personal tools