I have 2 following radio boxes in a form,
<input type="radio" name="radio" value="yes" class="radio" /> Yes
<input type="radio" name="radio" value="no" class="radio" /> No
- How can i recieve the value of the radio button once the form is posted (in PHP)
- Once it is posted on the same page, how can I remember the selected radio button and keep that checked? Thanks.