public function index()
{
$data['home'] = $this->load->view('home', $data, true); // load view
}
public function register_user(){
$data['home'] = $this->load->view('home', $data, true); // load view
}
in my home.php (view) there is a link to click to home/register_user and I got an error headers already sent error. I think I know why because my index of home controller also load the view. But if I removed the index's load view, then my home page is broken, because unregistered user will land first.