Ejemplo n.º 1
0
        <th>Semestre:</th>
        <td><?php 
echo $datosBasicos["semestre"];
?>
</td>
        <th>Ciclo:</th>
        <td><?php 
echo $datosBasicos["ciclo"];
?>
</td>
    </tr>
</table>
<table class="bordered">
    <tr>
        <th>ID Curso</th>
        <th>Nombre Curso</th>
        <th>Creditos</th>
        <th>Vez</th>
        <th>Semestre</th>
        <th>Promedio</th>
        <th>Observacion</th>
    </tr>
    <?php 
for ($i = 1; $i <= 9; $i++) {
    echo "<tr><th>CICLO " . $i . "</th></tr>";
    $alumno->cursosxCicloKardex($_SESSION["user"], $i);
}
echo "<tr><th>CICLO A</th></tr>";
$alumno->cursosxCicloKardex($_SESSION["user"], "A");
?>
</table>