Example #1
0
?>
 </h2>

    <br><br>
        <section>
            
            <h1 style="display:inline;">Contenidos Vistos </h1> 
            <h1 style="display:inline; position: relative; left: 15%;">Practicas Realizadas </h1>
            <h1 style="display:inline; position: relative; left: 28%;">Pruebas Realizadas </h1>

            <br><br>

            <section>

                <?php 
$temas = getTemasCurso($_GET['a']);
$temas->data_seek(1);
while ($row = $temas->fetch_assoc()) {
    echo $row['NombreT'] . " [" . temasVistos($row['IdTema']) . "] <br><br> ";
}
?>

            </section>
                <?php 
?>
            <section>

            </section>

            <br><br>
            
Example #2
0
echo $row['Sigla'];
?>
 </h3>
    <br><br>
        <button type="button" 
        onClick="location.href = 'negocio/LogicaMatricula.php?accion=1&a=<?php 
echo $_SESSION['id'] . "&curso=" . $row['Sigla'];
?>
'">
                    Matricular
        </button>
    <br><br><br><br>
        
    <center>
        <h1>Contenidos del Curso</h1>
       <?php 
$temas = getTemasCurso($_GET['curso']);
while ($row = $temas->fetch_assoc()) {
    echo $row['NombreT'];
}
?>
        <section>



        </section>
    
    </center>     
        
    </body>
</html>