pinoymed
05-10-2012, 07:17 AM
Hi, I'm currently creating a custom page where users may be able to edit their own informations including custom fields like first name, user type, gender, etc... Thanks to a tutorial I found in this forum, it was making a good progress, the problem is in the part where the information input comes from a drop down box with "Allow user to input their own value for this option", how will i save the data if the user opted to input his own value?
here is an example of my code in saving the edited fields, field33 is the field im describing.
$userfield_arr = array(
'field32' => $field32,
'field6' => $field6,
'field8' => $field8,
'field7' => $field7,
'field33' => $field33
);
$dataman->set_userfields($userfield_arr,false,'normal');
here is an example of my code in saving the edited fields, field33 is the field im describing.
$userfield_arr = array(
'field32' => $field32,
'field6' => $field6,
'field8' => $field8,
'field7' => $field7,
'field33' => $field33
);
$dataman->set_userfields($userfield_arr,false,'normal');