If I understand correctly, then you'll also need to get the row's primary key from the database so that you can update that specific row:
$output = mysql_query("SELECT primaryKey, field1, field2, field3, FROM tableName") or die(mysql_error());
and then:
while($info = mysql_fetch_array($output))
{
Print "<tr>";
Print "<td>".$info['field1'] . "</td> ";
Print "<td>".$info['field2'] . "</td> ";
Print "<td>".$info['field3'] . "</td> ";
Print '<td><label><input type="radio" name="Choice_'.$info['primaryKey'].'" value="1" />Approved</label>
<br />
<label><input type="radio" name="Choice_'.$info['primaryKey'].'" value="0" />Declined</label></td>';
Print "</tr>";
}
And then, when you submit the form, you loop back through the results to find the selected value:
while($info = mysql_fetch_array($output))
{
if($_POST['Choice_'.$info['primaryKey']] == 1){
// approved
} else {
// declined
}
}