MyBB Community Forums

Full Version: Grab the information?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, this is an odd request. Does anyone know how I'd include mybb and its header information on another site?

I'm looking to add signup information from one form to the mybb database, so it registers a user both on the service I offer and on my forum.

I can try to better explain if you need more info.
what other forum do you have?
Its not a forum. Its a blog service. I just want to know how to include the database information so I can allow the blog service to register users both for itself and for the forum.
The way you say it, you need to modify the "blog service" to insert the appropriate row into the database table mybb_users.

Something like...
mysql_query("INSERT INTO mybb_users (username, password, email, ...) VALUES ('username', 'password', 'email', ...) ");

That would probably be the easiest way, although not the most elegant way.