hi
that is in register.php
PHP Code:
// get extra profile fields
$profilefields=$DB_site->query("SELECT *
FROM profilefield
WHERE editable = 1
ORDER BY displayorder");
$customfields_required = '';
$customfields = '';
while ($profilefield=$DB_site->fetch_array($profilefields)) {
$profilefieldname="field$profilefield[profilefieldid]";
if ($profilefield[required] == 1) {
if ($bgcolor1=="#13486D") {
$bgcolor1="#1C5780";
$bgclass1="alt2";
} else {
$bgcolor1="#13486D";
$bgclass1="alt2";
}
$temp = $bgcolor;
$tempclass = $bgclass;
$bgcolor = $bgcolor1;
$bgclass = $bgclass1;
}
eval("\$customfields_required .= \"".gettemplate("register_customfields")."\";");
$bgcolor = $temp;
$bgclass = $tempclass;
} else { // Not Required
if ($bgcolor=="#13486D") {
$bgcolor="#1C5780";
$bgclass="alt2";
} else {
$bgcolor="#13486D";
$bgclass="alt1";
}
eval("\$customfields .= \"".gettemplate("register_customfields")."\";");
}
}
$bgcolor = "#1C5780";
in the following line, it calls register_customfields template:
eval("\$customfields .= \"".gettemplate("register_customfields")."\";") ;
what i want is
if the customfield[id]=2 or if the customfield[title]=location {
get register_customfields
2 template }
notice that there is too many difrents between content of register_customfields and registercustomfields
2
help me please