Actualizar consultas en codeigniter utilizando dónde condición
public function update_row(){
$update_rows = array('field-name' => 'field-data',);
$this->db->where('id', 1 );
$this->db->update('table-name', $update_rows);
}
Black Bat