class Index extends Controller{
function __construct()
{
parent::Controller();
}
function Index()
{
$config['title'] ="Phnome' home";
$config['body'] = 'includes/body';
$config['left'] = 'includes/left';
$config['url'] = base_url();
$this->load->view('template',$config);
}
}