Log in

View Full Version : Inserting Custom Profile Field value during Registration


lightwave
07-12-2006, 12:18 AM
Hello, can anyone please help me on my problem.

During registration, I assign members to a random secondary usergroup. I achieved it doing this code:

$membergroupidsrandom = rand(11,14);
$userdata->set('membergroupids', $membergroupidsrandom);

Now, I added a hidden custom profile field, and I want to insert the same value. the field is numbered 12 in the database.

will this work?

$userdata->set('field12', $membergroupidsrandom);

I know my first set of codes, adding to membergroup will work, but I don't know about the second since field12 isnt in the users table, its on its own table.

can anyone help me?

UPDATE: I believe I have it. Can someone pleaes tell me if its right.


$userfields = array('field12' => "$membergroupidsrandom");
$userdata->set_userfields($userfields, true, 'admin');

workRelated
08-18-2006, 06:51 PM
Ive yet to find a working solution of this can anyone provide any information?

lightwave
08-28-2006, 05:40 PM
I have it, here it is:

change ## to the number of the custom field, and fieldvalue to the value you want

$fieldvariable = array('field##' => "fieldvalue");
$userdata->set_userfields($fieldvariable, true, 'admin');

Ted S
01-06-2007, 07:37 PM
I have it, here it is:

change ## to the number of the custom field, and fieldvalue to the value you want

$fieldvariable = array('field##' => "fieldvalue");
$userdata->set_userfields($fieldvariable, true, 'admin');

Thanks!