На данный момент у меня есть
Код: Выделить всё
$item_id = $this->input->post('item_id');
$this->db->from('bids');
$this->db->where('item_id', $item_id);
$this->db->where('outbid_alert', '1');
$this->db->select_max('bid_amount');
$query = $this->db->get();
return $query->result();
Подробнее здесь: https://stackoverflow.com/questions/147 ... e-targeted
Мобильная версия