Hi guys,
i have encountered a problem with php coding, hope you guys will be able to help me out 
if ($result) {
while ($row = mysql_fetch_array($result)) {
$a = $row[a];
$b= $row;
$c = $row[c];
echo"<label><input type=\"radio\" name=\"RadioGroup1\" value=\"$a\">a:$a,</td><td>$b</td><td>$c</label><br>";
}
echo"<tr><td><input type=\"submit\" name=\"Submit\" value=\"Submit\"></td></tr>";
}
------------------------------------------------------------------------------
I am running trying to run a while loop that draws a value from a table, and attach it to a radio button.
The problem is that when I select a radio button and submit it, the value that is sent over to the next page is that of the last value drawn from while loop.
How do I ensure that the information to be sent over is of that I require?
Thank you for your time!
Cheers
t-bonist