SyntaxFix
Write A Post
Hire A Developer
Questions
In codeigniter doc if you update specific field just do this
$data = array( 'yourfieldname' => value, 'name' => $name, 'date' => $date ); $this->db->where('yourfieldname', yourfieldvalue); $this->db->update('yourtablename', $data);