[eluser]Peace-N[/eluser]
Hi
Im new to CI I just downloaded and set up my development environment, there ia this code adding logic to the controller where do I put it, do I put in pages.php ?
After pasting the code my home.php shows blank ?
public function view($page = 'home')
{
if ( ! file_exists('application/views/pages/'.$page.'.php'))
{
// Whoops, we don't have a page for that!
show_404();
}
$data['title'] = ucfirst($page); // Capitalize the first letter
$this->load->view('templates/header', $data);
$this->load->view('pages/'.$page, $data);
$this->load->view('templates/footer', $data);
}
Help, Help ?