Hi can anyone let me know which is the best way to use the header footer in codeigniter? The way below seems to be troublesome to put into each function to display header footer
$this->load->view('header');
$this->load->view('content', $data);
$this->load->view('footer');
Also i browse around the web i see some people do the loading of header and footer functions in the Core controller. Anyone have any idea how to do it?
Please advise anyone.