I have a form with two radio buttons, and I want to prevent either of them from being checked. Disabling them is not an option because I still need the selected value to be submitted to the database. When one button is clicked, it gets checked but then doesn't allow me to click the other one. I want both buttons to remain unchecked.
<form action="here.php" method="post">
<input onclick="return false" type="radio" name="firstone" value="Yes" /> Yes
<input onclick="return false" type="radio" name="firstone" value="No" /> No
<input type="submit" />
</form>
Does anyone have a solution for this without using Javascript?