Skip to content

Instantly share code, notes, and snippets.

@jrvaja
Created July 2, 2012 17:57
Show Gist options
  • Save jrvaja/3034608 to your computer and use it in GitHub Desktop.
Save jrvaja/3034608 to your computer and use it in GitHub Desktop.
CodeIgniter: view_functions
<!-- ************************************************************************** -->
<!-- Load multiple Views -->
<!-- ************************************************************************** -->
<?php
class Page extends CI_Controller {
function index()
{
$data['page_title'] = 'Your title';
$this->load->view('header');
$this->load->view('menu');
$this->load->view('content', $data);
$this->load->view('footer');
}
}
<!-- ************************************************************************** -->
<!-- Dynamic data to view -->
<!-- ************************************************************************** -->
$data = array(
'title' => 'My Title',
'heading' => 'My Heading',
'message' => 'My Message'
);
$this->load->view('blogview', $data);
<!-- ************************************************************************** -->
<!-- Returning views as data -->
<!-- ************************************************************************** -->
$string = $this->load->view('myfile', '', true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment