Hey guys, I'm having an issue with loading multiple views in codeigiter.
$this->load->view('header');
$this->load->view('body-view', $data);
$this->load->view('footer');
The code above will allow me to load views right after each other on other servers I have worked on. For some reason, my server will only ouput one of these views at a time. I have been using codeigniter for a few years now, so I know that this is valid syntax.
Could it be an output issue with my servers configuration? Any help is much appreciated.