Теперь это моя модель
Код: Выделить всё
function list_get($id){
$this->load->database();
$query = $this->db->get_where('lists', array('list_id'=>$id));
return $query->row_array();
}
Код: Выделить всё
function list_get($id){
$this->load->database();
$query = $this->db->get_where('lists', array('list_id'=>$id));
return $query->row_array();
}