[SOVED] Codeigniter : Insert Mysql With Whitespace Field

[SOVED] Codeigniter : Insert Mysql With Whitespace Field

Okay, I updated the code in /system/database/DB_driver.php by modifying the code in the _insert function. From the initial code as follows: protected function _insert ($table, $keys, $values){return 'INSERT INTO'. $table. '('. implode (',', $keys). ') VALUES ('. implode (',', $values). ')';} Becomes protected...