Quote:
Originally Posted by Opserty
Use $db->escape_string() instead of addslashes().
|
So this instead?
PHP Code:
$db->query_write("INSERT INTO users (username, password, email) VALUES (
'" . $db->escape_string(htmlspecialchars_uni($vbulletin->GPC['username'])) . "', '" . $db->escape_string(htmlspecialchars_uni($vbulletin->GPC['password_md5'])) . "', '" . $db->escape_string(htmlspecialchars_uni($vbulletin->GPC['email'])) . "')");
I know I read somewhere else about not using addslashes any longer, but what is the rational behind that - do you remember?