Also, Anybody See A Problem With This QUERY String? It Worked GREAT For VB2.2.3 But It's Not Working For VB3 GOLD
Code:
// we insert the user into the vbdatabase
$query="INSERT INTO user (username,password,email,adminemail,joindate,cookieuser,daysprune,lastvisit,lastactivity,usergroupid,emailnotification,receivepm,nosessionhash,showemail,plat,platplus) VALUES ('".addslashes(htmlspecialchars($HTTP_POST_VARS['mvc_USERNAME']))."','".addslashes(md5($HTTP_POST_VARS['mvc_PASSWORD']))."','".addslashes(htmlspecialchars($HTTP_POST_VARS['mvc_EMAIL']))."','1','".time()."','1','-1','".time()."','".time()."','$newusergroupid','1','1','1','1','$plat','$platplus')";
mysql_query($query);
$userid=mysql_insert_id();
// we do a second step in order to add him correctly
$query="INSERT INTO userfield SET userid='$userid'";
mysql_query($query);
mysql_close();