Error message by DIDY


Please check your controller. It must be located @ chm\controller\{controller_name}.php

Sample Code:
	class home extends didy {		

		function __construct(){
			
			parent::__construct();
			
			$this->process->dbase();
			
			$this->process->view('include\head');	
			
			$this->_insert->css_style('didy_style');	
			
			$this->process->view('include\body');	
			
			
		}
	
		public function index(){
			
			$this->process->view('home');	
			
			$this->process->view('include\footer');							
		}

	}