Welcome Guest, Not a member yet? Register   Sign In
PHP includes aren't working in CI
#9

[eluser]Michael Wales[/eluser]
controller/home.php
Code:
function index() {
  $vars['the_date'] = date('Y-m-d');
  $vars['view'] = 'home/photos';
  $this->load->view('view', $vars);
}

views/view.php
Code:
$this->load->view('_global/header');
$this->load->view($view);
$this->load->view('_global/sidebar');
$this->load->view('_global/footer');

All of those views (header, sidebar, footer, the view passed via a var (home/photos) will have access to the entire array of variables (they would be able to echo the date, perfectly fine).


Messages In This Thread
PHP includes aren't working in CI - by El Forum - 05-25-2008, 03:28 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 03:38 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 03:44 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 03:52 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 05:43 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 06:35 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 06:49 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 06:54 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 09:22 AM
PHP includes aren't working in CI - by El Forum - 05-25-2008, 10:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB