Welcome Guest, Not a member yet? Register   Sign In
Controller for header,footer and sidebar
#1

How to create separate controllers for header,footer and sidebar so i can perform operations on it?
Reply
#2

Please, read the CI documentation about controllers, views and models. In that order.
Reply
#3

Please use the tutorial and recreate the demo app.
Its a great start and explains all the steps you need to know. It took me only 30min and after that everything was nice and easy

Tutorial
On the package it said needs Windows 7 or better. So I installed Linux.
Reply
#4

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.
Reply
#5

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
}

}
Reply




Theme © iAndrew 2016 - Forum software by © MyBB