my question is that i have a group of radio buttons and all are grouped into one 'x0'.Now how do i iterate through this radiobutton group using foreach ,and find if its empty/or not and do further operations based on the value?
<tr>
<td><input type="radio" name="x0" value="0" <?=$x0?>> 0. </td>
</tr>
<tr>
<td><input type="radio" name="x0" value="1" <?=$x1?>> 1. </td>
</tr>
<tr>
<td><input type="radio" name="x0" value="2" <?=$x2?>> 2. </td>
</tr>
<tr>
<td><input type="radio" name="x0" value="3" <?=$x3?>> 3. </td>
</tr>
Thanks in advance.