Quote:
Originally Posted by Takamine334
no one? Hmm, I thought this was a forum where people knew php...guess not. oh well.
|
Post like that kinda gets on my nerves. When posting help, give people some time. Not everyone is on at the same time as you are. In any case your query should look something like this.
PHP Code:
$rz = $DB_site->query("
INSERT INTO " . TABLE_PREFIX . "users
(username, password, email, status, added)
VALUES
(
'" . addslashes($dat['username']) . "',
'" . addslashes($dat['password']) . "',
'" . addslashes($dat['email']) . "',
'confirmed',
'" . get_date_time() . "'
)
");