Skip to content

Instantly share code, notes, and snippets.

@phawk
Created January 15, 2012 12:17
Show Gist options
  • Select an option

  • Save phawk/1615678 to your computer and use it in GitHub Desktop.

Select an option

Save phawk/1615678 to your computer and use it in GitHub Desktop.
<?php
class Users_model extends MY_Model
{
public function __construct()
{
parent::__construct();
/* Set Table info */
$this->table_name = 'users';
$this->primary_key = 'id' ;
$this->fields = array(
'id',
'name',
'email',
'status',
'password'
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment