Skip to content

Instantly share code, notes, and snippets.

@Jragon
Created November 23, 2012 22:17
Show Gist options
  • Save Jragon/4137546 to your computer and use it in GitHub Desktop.
Save Jragon/4137546 to your computer and use it in GitHub Desktop.
<?php
class Welcome extends Controller{
public function index(){
var_dump($this->load);
$this->load->model('welcome');
$data = array('title' => 'Hellow', 'greeting' => $this->welcome->greeting);
$this->load->view('welcome/index', $data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment