getting single result from codeigniter Nov 9, 2018 public function single_result($id) { $this->db->select( '*' ); $this->db->where( 'id', $id); $q = $this->db->get( 'attachments' ); $first = $q->row(); return $first; }