Hi,
Its definatly a Single-Select dropdown, with Yes/No as the values. Seems really weird that it doesn't seem to show up ... yet its obviously being set in their profile, as it gets selected ok when changed (i.e if they edit their profile).
Is there a way to "dump" a list of the values/names of the info held in $bbuserinfo? Maybe a "foreach () "? That may be an easier way, so I can at least see if the value exists there, or whether it needs to be created somehow =)
TIA
Just put this together;
<?php
foreach ($bbuserinfo as $field => $value) {
echo "$field => $value <br>";
}
?>
Theoretically, this should give me all the values held in $bbuserinfo. Does anyone know where abouts I would put this? I guess PHP code isn't directly allowed in the templates?
TIA
|