I want this as one form with one submit button with all the $ProductName details in one table but different cells, so 3 radio buttons will be needed for each one. Can this be done?
$productsql = "SELECT * FROM survey WHERE rtid=2";
$productResults = mysql_query($productsql);
while ($productRow = mysql_fetch_array ($productResults)){
$ProductName = $productRow["requirement_txt"];
echo"
<FORM method='POST' action='friday1.php'>
<table border='1'>
<td>Requirement Type</td><td>Currently In Place</td><td>Required-Essential</td><td>Required-Recommended</td><tr>
<td>$ProductName</td>
<td><INPUT type='radio' name='myradio' value='Currently In Place' CHECKED></td>
<td><INPUT type='radio' name='myradio' value='Required Essential'></td>
<td><INPUT type='radio' name='myradio' value='Required-Recommended'></td>
</tr>
<p>
<INPUT type='submit' name='mybutton' value='Submit'>
</FORM>";}