Quote:
Originally Posted by TheMayhem
When i changed this...
PHP Code:
$sql = "INSERT INTO " . TABLE_PREFIX . "user(". implode(',', $names) . ")
VALUES(". implode(',', $values) . ")";
to this
PHP Code:
INSERT INTO `user` (`username`,`email`,`password`,`joindate`,`usergroupid`)
I get this wonderful error
Parse error: parse error, unexpected T_STRING in /home/nodq/public_html/newuser2.php on line 240
|
Err, you must not be a programmer. Sorry, I didn't know.
Here:
PHP Code:
$sql = "INSERT INTO `" . TABLE_PREFIX . "user` (". implode(',', $names) . ")
VALUES(". implode(',', $values) . ")";