Created
July 2, 2012 17:57
-
-
Save jrvaja/3034608 to your computer and use it in GitHub Desktop.
CodeIgniter: view_functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ************************************************************************** --> | |
<!-- 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