Good afternoon friends I have this code in HTML (it's just part of the whole code) and even with a database, I would like to know how to say "Monica", "uzziel", "Andres" could bring the names that I have registered in my database.
A if I have my picture at the moment: link
My code.
<table class="table table-bordered">
<tr>
<th>Docente</th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
</tr>
<tr>
<td>Monica</td>
<td><input type="radio" name="respuestam"></td>
<td><input type="radio" name="respuestam"></td>
<td><input type="radio" name="respuestam"></td>
<td><input type="radio" name="respuestam"></td>
<td><input type="radio" name="respuestam"></td>
</tr>
<tr>
<td>Uzziel</td>
<td><input type="radio" name="respuestau"></td>
<td><input type="radio" name="respuestau"></td>
<td><input type="radio" name="respuestau"></td>
<td><input type="radio" name="respuestau"></td>
<td><input type="radio" name="respuestau"></td>
</tr>
<tr>
<td>Andres</td>
<td><input type="radio" name="respuestaA"></td>
<td><input type="radio" name="respuestaA"></td>
<td><input type="radio" name="respuestaA"></td>
<td><input type="radio" name="respuestaA"></td>
<td><input type="radio" name="respuestaA"></td>
</tr>