Hi
I have a section where when joining the customer must select if they are male or female.
as its a male orientated site, i want the male default button to be selected as default, but i dont know how to do this...
can anyone tell me what i need to do with this code
PHP Code:
<td class="infoBoxContents"><?php echo tep_draw_radio_field('gender', 'm') . ' ' . MALE . ' ' . tep_draw_radio_field('gender', 'f') . ' ' . FEMALE . ' ' . (tep_not_null(ENTRY_GENDER_TEXT) ? '<span class="inputRequirement">' . ENTRY_GENDER_TEXT . '</span>': ''); ?></td>
to make the MALE radio button checked by default
thanks heaps !
|