When I click male or female on my form it saves to dbase as yes or no. Example: If I mark "male" then dbase shows "yes" instead of "male". What could be going on? Here is my code.
Thanks in advance!
Ben
<div class="form_item">
<div class="form_element cf_radiobutton">
<label class="cf_label" style="width: 150px;">Sex</label>
<div class="float_left">
<input value="Male" title="" class="radio validate-one-required" id="radio00" name="radio0" type="radio" />
<label for="radio00" class="radio_label">Male</label>
<br />
<input value="Female" title="" class="radio validate-one-required" id="radio01" name="radio0" type="radio" />
<label for="radio01" class="radio_label">Female</label>
<br />
</div>
</div>
<div class="cfclear"> </div>
</div>
Thanks in advance!
Ben