[SOVED] MySql Query Update With White Space Field in Query Builder Codeigniter
Okay, I updated the code in /system/database/DB_driver.php by modifying the code in the _update function.
From the initial code as follows:
protected function _update($table, $values) { foreach ($values as $key => $val) { $valstr[] = $key . ' = ' . $val; } return 'UPDATE ' . $table . ' SET ' . implode(',...