while($row = mysql_fetch_assoc($resultParam_pp))
{
$lblParameter_pp = $row['ParameterName'];
$lblParameterSeq_pp = $row['Parameter_seq'];
echo "<tr>";
echo "<form action = 'http://10.237.102.158/SPC_Stations/Grinding/spc_grd_02.php' method = 'post'>";
echo "<td align = left>";
echo "<input type = 'radio' name = 'paramSelect' value = '$lblParameter_pp' checked><font face = Arial size = 2>" . $lblParameter_pp;
echo "<input type = 'hidden' name = 'hidParSel' value = '$lblParameterSeq_pp'></font>";
echo "</td></form>";
echo "</tr>";
}
the problem with this code is that, all of the option buttons are clickable even though they have the same names.
please help..^^