我想确定选中了哪个单选按钮...这就是我填充单选按钮列表的方式:
$sql="SELECT * from intrebari where cod_chestionar='".$_SESSION['cod']."' ";
$result=mysql_query($sql);
echo "<br><br>";
echo "<table border='1'>";
while($row=mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>";
echo "<input type='radio' name='intrebare' value=''>";
echo $row[denumire_intrebare];
echo "<br>";
echo "</td>";
echo "</tr>";
}
echo "</table>";
现在假设这给我带来了 4 个元素的列表。如何找出选中了哪些单选按钮。如果是第一个或第二个或......