Controller for header,footer and sidebar |
How to create separate controllers for header,footer and sidebar so i can perform operations on it?
Please, read the CI documentation about controllers, views and models. In that order.
why dont u use the header footer on views? so u can call it the view, it doesn't need to make a new controller.
You can manage header, footer, sidebar by method calling.
class Blogs extends CI_Controller { function __construct() { Parent::__construct(); } public function index() { $output['main_page'] = array(); $this->load->view('front/includes/header', $output); //Load header $this->load->view('front/blogs/index'); //Load middle content of page $this->load->view('front/includes/footer'); // Load footer } } |
Welcome Guest, Not a member yet? Register Sign In |