Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created January 31, 2009 09:30
Show Gist options
  • Save walesmd/55497 to your computer and use it in GitHub Desktop.
Save walesmd/55497 to your computer and use it in GitHub Desktop.
<?php
class Users extends Controller {
function Users() {
parent::Controller();
$this->load->model('user');
}
function profile($username = FALSE) {
$data['user'] = $this->user->get($username);
$this->load->view('users/profile', $data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment