I am able to get the last inserted id using $this->db->insert_id(); in codeigniter, is there any way that I can get the id of the last updated record? I tried
$this->db->insert_id();
Return the id which your using in where clause for update
function Update($data,$id){ $this->db->where('id', $id); $this->db->update('update_tbl',$data); return $id; }