Log in

View Full Version : Adding Users to VB via Seperate Signup Form


dreamache
04-03-2006, 07:55 PM
I want to be able to take just the username / password / email fields that i require on my sites custom signup form, and when I post, i want to automatically add them as a user to the vbulletin database - and when they submit it, i don't want them to be directed to any vbulletin page, I want them to stay on my own page.

then, once the code adds them as a new user to vbulletin, i want it to automatically set the cookies that will have them logged in when they visit the forum - that way they won't have to login again. plus, when they login through my own custom login form, i want them to of course be logged into vbulletin.

anything out there that will handle both or either of these requests?

Krofh
04-03-2006, 08:28 PM
Well the first one is easy, simply put a line of code into your current site's form such as:

mysql_query("INSERT INTO myforum_user (username, password, email) VALUES ('$username', '$password', '$email')");

I'm not sure, but vBulletin might also require birthdate right away. As for the cookies, it shows what's being set in includes/functions_login.php with vbsetcookie(), and includes/functions.php contains vbsetcookie(), so you could try and work out the code from that.

- Jesse