Skip to content

Instantly share code, notes, and snippets.

@fabriziomachado
Created September 6, 2011 12:00
Show Gist options
  • Save fabriziomachado/1197366 to your computer and use it in GitHub Desktop.
Save fabriziomachado/1197366 to your computer and use it in GitHub Desktop.
my-ci-app/application/models/phone_carrier_model.php
<?php
class Phone_carrier_model extends CI_Model {
function __construct()
{
parent::__construct();
}
public function getCarriers($attributes)
{
return $this->db->get('phone_carrier')->result();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment