Okay anyone want to help with one more query?
I've got the table usrcredit in the database it has two feilds usrname and curcredit.
I'm tryign to populate these fields at registration by inserting the username and a given integer. I know the file I need to modify is register.php. The user gets added to teh vbulletin side but they reveive a general database error and nothing gets inserted into my two fields. Here's what I've tried:
Code:
$DB_site->query("INSERT INTO usrcredit (usrname) VALUES ($username)");
$DB_site->query("INSERT INTO usrcredit (curcredit) VALUES (100)");
I set those two queries to run after the unser information is created in vbulletin.
Any help would be appreciated.
Thanks