Модель
Код: Выделить всё
public function get_comments ($id)
{
$this->db->select('*');
$this->db->order_by('id', 'ASC');
$this->db->from('Item_comments');
$this->db->limit('5');
$this->db->where(array('checklist_item_id' => $id, 'status' => 1));
$query = $this->db->get();
return $query->result_array();
}
Подробнее здесь: https://stackoverflow.com/questions/376 ... ng-codeign
Мобильная версия