Código PHP:
<table id="tablaColegios" border="1">
<tr>
<th></th>
<th>Clase</th>
<th>Profesor</th>
</tr>
<%for (int idx = 0; idx < aoColegio.length; idx++) {%>
<tr>
<td><input type="checkbox"></td>
<td><%=aoColegio[idx].getIdClase()%></td>
<td><%=aoColegio[idx].getIdProfesor()%></td>
</tr>
<%}%>
</table>
Ayuda porfa!!!