Well, I just finally solved this on my own.
I am so used to the phpBB open source world where every user is so helpful and everyone works so well together....
the catch is they NEED to be, cuz the software requires all that help...hahaha.
I love this vBulletin deal --- MUCHO....
$vbulletin->GPC['userfield']["field5"]
$vbulletin->GPC['userfield']["field6"]
are the values you need to insert for your custom fields...assuming these are the first two cusstom fields you added....
for me it was 5 -= first name and 6 =- last name
and I inserted them into another database table upon regisration....so they hit userfield5 and 6 in the vb_userfield tables....or usertext not sure which....
and they also hit my database table
PHP Code:
$insertSQL = sprintf("INSERT INTO table_name (firstname, lastname) VALUES (%s, %s)",
GetSQLValueString($vbulletin->GPC['userfield']["field5"], "text"),
GetSQLValueString($vbulletin->GPC['userfield']["field6"], "text"));
Of course GetSQLValueString is a dreamweaver code inserted when you insert your recordset to begin with...