Код: Выделить всё
//set up insert....
$this->db->insert('property');
$id = $this->db->insert_id();
//some stuff
//set up get
$this->db->where('id', $id);
$id = $this->db->get();
Подробнее здесь: https://stackoverflow.com/questions/916 ... -to-insert