2
Here’s the code:
<?php while($ver=mysql_fetch_row($busca)){ ?>
<tr>
<td><input type="radio" value="<?php echo "$var[0]"; ?>"></td><td><?php echo "$ver[0]"; ?></td>
<td><?php echo "$ver[1]"; ?></td>
<td><?php echo "$ver[2]"; ?></td>
<td><?php echo "$ver[3]"; ?></td>
<td><?php echo "$ver[4]"; ?></td>
</tr>
<?php } ?>
And here only one should be selected, but that’s not what’s happening:
The id field is $ver[0]
– Eduardo Balestrin
Legal, @Eduardobalestrin edited
– Alan Rezende