I need to fetch questions with 4 optional answers from dtabase....
tables are questions | options...html code is below...
<table width="536" height="54">
<tr>
<td class="deco">Q<?php echo $index.") ".$questions; ?> </td>
<td width="15"></td>
</tr>
<?php while($row_wrong_ans = mysql_fetch_array($res_wrong_ans)){
$op_index = $row_wrong_ans['fbo_index'];
$op = $row_wrong_ans['fbo_ans'];
?>
<tr>
<td width="473"><input type="radio" name="radio[<?php $index;?>]" value="<?php echo $op_index;?>" /><?php echo $op; }?></td>
<td><input type="hidden" name="hid" value="<?php echo $index;?> " /></td><br />
</tr>
</table>
<?php } ?>
In the next page I need to get the value of the Radio(having a dynamic name)...with $_POST..how to get it????
Plz help....
Thank you