I need help with the radio button and forms.
Greetings. I need help with the radio button and forms. from my database I bring the data (first and last names). What I need is for the radio to be located next to each name. for more than the attempt is added up or to the sides or under the names, but it is not aligned with the names that come from the form. my code. <?php //realizamos la conexion ////// require_once "conexion.php"; ///////realizamos la consulta///// while ($registroEstudiantes = $consulta_estudiante->fetch_array(MYSQLI_BOTH)) { echo "<tr> <td>".$registroEstudiantes['id_estudiante']."</td> <td>".$registroEstudiantes['nombre_estudiante']."</td> <td>".$registroEstudiantes['apellido_estudiante']."</td> <td>".$registroEstudiantes['curso_estudiante']."</td> </tr>"; } ?>