Welcome Guest, Not a member yet? Register   Sign In
loading view into another view?
#4

[eluser]Michael Wales[/eluser]
I tend to do it with one master view file, then define a partial within my controller:

views/view.php
Code:
<?php

  $this->load->view('_global/header');
  $this->load->view($partial);
  $this->load->view('_global/sidebar');
  $this->load->view('_global/footer');
?>

controllers/post.php
Code:
<?php
  function index() {
    $this->data->partial = 'post/index';
    $this->load->view('view', $this->data);
  }
?>


Messages In This Thread
loading view into another view? - by El Forum - 05-18-2008, 03:31 AM
loading view into another view? - by El Forum - 05-18-2008, 04:53 AM
loading view into another view? - by El Forum - 05-18-2008, 05:00 AM
loading view into another view? - by El Forum - 05-18-2008, 05:25 AM
loading view into another view? - by El Forum - 05-21-2008, 11:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB