Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created May 26, 2012 23:45
Show Gist options
  • Save cam-gists/2795644 to your computer and use it in GitHub Desktop.
Save cam-gists/2795644 to your computer and use it in GitHub Desktop.
CodeIgniter: Simple CodeIgniter Templating
//In the controller:
public function index() {
$this->data['content'] = 'your-views-name';
$this->load->view('your-templates-name', $this->data);
}
//In the view:
$this->load->view($content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment