ghost
02-28-2004, 01:37 AM
Is it possible to show the additional field in the user report? The value for the additional field is number, how can I corresponent the value and the display for the field?
add_member_field('school', 'name of School Studying', 'select', 'name of school', '',
array('options' => $items = array(
0 => 'Non-applicable',
1 => 'T.W.G.Hs. Chen Zao Men College',
2 => 'T.W.G.Hs. Mrs. Wu York Yu Memorial College',
3 => 'Yuen Long Public Secondary School'
))
);
$config['school_items'] = $items;
How to show the school name in the report instead of the value of the school?
Thanks
add_member_field('school', 'name of School Studying', 'select', 'name of school', '',
array('options' => $items = array(
0 => 'Non-applicable',
1 => 'T.W.G.Hs. Chen Zao Men College',
2 => 'T.W.G.Hs. Mrs. Wu York Yu Memorial College',
3 => 'Yuen Long Public Secondary School'
))
);
$config['school_items'] = $items;
How to show the school name in the report instead of the value of the school?
Thanks