How do I put the php variable in the following value:
<?php
while($ver=mysql_fetch_row($busca)){
$id1 = $ver[0];
?>
<tr>
<td><input type="radio" value="$id1"></td>
<td><?php echo "$ver[0]"; ?></td>
# code ...
The way I did value="$id1"
did not work.
Only one of the "radios" should be selected, so the values must be different: