Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created April 26, 2009 20:03
Show Gist options
  • Save walesmd/102154 to your computer and use it in GitHub Desktop.
Save walesmd/102154 to your computer and use it in GitHub Desktop.
<?php
// application/controllers/users.php
class Users extends MY_Controller {
function Users() {
parent::MY_Controller();
}
function index() {
$this->load->view('layout');
}
function no_partial() {
$this->load->view('layout');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment