I have some radio buttons, shown in the code below:
<td><INPUT type='radio' name='myradio[{$productRow1['id']}]' value='Currently In Place' CHECKED></td>
<td><INPUT type='radio' name='myradio[{$productRow1['id']}]' value='Required Essential'></td>
<td><INPUT type='radio' name='myradio[{$productRow1['id']}]' value='Required-Recommended'></td></tr>
How do I see the results on the next page? At the moment with this code the results are showing as array (6 times) 6 times as there are 6 results, that makes sense but how do I show what the actual values are?
next page code:
$productsql1 = "SELECT * FROM survey WHERE rtid=1";
$productResults1 = mysql_query($productsql1);
while ($productRow1 = mysql_fetch_array ($productResults1)){
$ProductName1 = $productRow1["requirement_txt"];
echo "<BR>You Chose " . $_POST['myradio'] . "\n";}