// you can use the where clause
$this->db->where('field1', 'string');
$query = $this->db->get('tabledb');
// Returns the "last" row
$last = $query->last_row('array');
// retrieve last inserted id from table
$last_id = $last['id'];
