Is it possible to access different controller from other
like:
$this->load->controller(‘controllers/header’,$data,TRUE);
the same as we can run
$this->load->view(‘partials/header’,$data,TRUE);
I need to access my forum controller from other controllers and not to pass every time the same arguments to the view.
Is it possible?
Thanks.