View : vw_home.php
<?php echo "hello world "; ?>
Controller : home.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class home extends CI_Controller{
function __construct(){
parent::__construct();
}
function index(){
$data['page_title']="WELCOME | CSB SDP";
$this->load->view('SideBar',$data);
}
}
}
Route :
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'home/index';
?>
_I guess the model is not applicable here; I am a newbie in Codeigniter and it turns out to have an error
OBJECT NOT FOUND .
can anyone please help me :( what else lack here ?