Topic: Problem with switching check boxes
I am using The Reputation mod and in my profile I have the following:
<label><?php echo $lang_reputation['Description Manage reputation'] ?><br />
<input type="radio" name="reputation_enable" value="1"<?php if ($pun_user['reputation_enable'] == '1') echo ' checked="checked"' ?> /> <strong>Yes</strong>
<input type="radio" name="reputation_enable" value="0"<?php if ($pun_user['reputation_enable'] == '0') echo ' checked="checked"' ?> /> <strong>No</strong></label>
the problem is, I can't switch between the 2 of them. It defaults as "Yes" and won't let me click on "No". Can anyone tell me how I can fix this?
Thanks
Bingiman