I am new in codeigniter.
I am using codeigniter for this project. I have not getting how to update form data in the database. I have inserting,showing data in the dat
You have to run update query this way in CodeIgniter.
public function entry_update1($id,$data) { $this->db->set($data); $this->db->where('id',$id); $update = $this->db->update('user'); if($update) { return true; } else { return false; } }