Dear kh99, i am sorry, so is it like this
Quote:
if ($_POST['do'] == 'updateprofile')
{
$vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY);
$fieldcontentbefore = array(
'aaa',
'ccc'
);
$fieldcontentafter = array(
'bbb',
'ddd'
);
$vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY); = str_replace($fieldcontentbefore, $fieldcontentafter, $vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY) ;
|
or this one
Quote:
if ($_POST['do'] == 'updateprofile')
{
$vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY);
$fieldcontentbefore = array(
'aaa',
'ccc'
);
$fieldcontentafter = array(
'bbb',
'ddd'
);
$vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY) = str_replace($fieldcontentbefore, $fieldcontentafter, $vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY));
}
|
}
i tried both got error message like this
Parse error: syntax error, unexpected '=' in /home/username/public_html/profile.php(156) : eval()'d code on line 22