Quote:
Originally Posted by Opserty
If you are including the vB backend you can make use of the datamanager
https://vborg.vbsupport.ru/showthread.php?t=82836
I think you can add extra fields by something like this:
PHP Code:
// $userdm = data...bla...bla... $userdm->validfields['fieldname'] = array(TYPE_STR, REQ_NO); $userdm->set...
Although not directly link to you original question there is more info on adding a field to a datamanager here: https://vborg.vbsupport.ru/showthread.php?t=119376
Someone might need to verify it but its worth a try 
|
I don't know what to do with that

I don't know if i add that into the register.php, or if i have to make a new register page?
What i have is the following:
register.php template is edited to have a dropdown to chose Male or Female gender (to affect the gender of the game character). The values in the html are M and F.
Along with all the regular VBulletin data, i need the gender values of either M or F to be inserted into the "user" table (same table as the username, pass, email and so on) into the column "sex".
I only know how to do this using a MySQL query such as, for example:
PHP Code:
$create_account = mysql_query("INSERT INTO user (username, sex) VALUES ('$username', '$sex')");
And i see nothing like this in register.php, so i am completely lost