Welcome Guest, Not a member yet? Register   Sign In
multiple views
#2

[eluser]Michael Wales[/eluser]
I assume you are placing that code within your controller. Load a single view from your controller and then load your others views from that main view. I usually do something like this:

controller
Code:
function index() {
  $this->data->partial = 'home/index';
  $this->load->view('layout', $this->data);
}

views/layout.php
Code:
$this->layout->view('header');
$this->layout->view($partial);
$this->layout->view('footer');


Messages In This Thread
multiple views - by El Forum - 09-10-2008, 11:49 PM
multiple views - by El Forum - 09-10-2008, 11:57 PM
multiple views - by El Forum - 09-11-2008, 12:16 AM
multiple views - by El Forum - 10-15-2008, 11:55 AM
multiple views - by El Forum - 10-15-2008, 07:41 PM
multiple views - by El Forum - 10-16-2008, 03:07 PM
multiple views - by El Forum - 10-16-2008, 09:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB