All pastes #84350 Raw Edit

Untitled

public text v1 · immutable
#84350 ·published 2006-07-10 21:00 UTC
rendered paste body
<?php

class Controller implements iController{

	/**
	 * Run the controller
	 */
	public function main(){
	
	}
	
	public function __autoload($class_name){
		require(ALL_INCLUDES.'/'.$class_name.'.php');
	}

}

?>