示例#1
0
include_once "../../login/check.php";
include_once "../../class/tarea.php";
include_once "../../class/curso.php";
include_once "../../class/materias.php";
if (!empty($_SESSION)) {
    $tarea = new tarea();
    $materias = new materias();
    $curso = new curso();
    $CodDocente = $_SESSION['CodUsuarioLog'];
    $CodCurso = $_POST['CodCurso'];
    $CodMateria = $_POST['CodMateria'];
    $ma = $materias->mostrarMateria($CodMateria);
    $ma = array_shift($ma);
    $cu = $curso->mostrarCurso($CodCurso);
    $cu = array_shift($cu);
    $tareas = $tarea->mostrarTareas($CodDocente, $CodCurso, $CodMateria);
    ?>
    <a href="#" class="btn btn-success btn-mini" id="exportarexcel"><?php 
    echo $idioma['ExportarExcel'];
    ?>
</a>
	<table class="table table-hover table-bordered table-striped">
    	<thead>
        	<tr><th colspan="2"><?php 
    echo $idioma['Materia'];
    ?>
:</th><th colspan="1"><?php 
    echo $ma['Nombre'];
    ?>
</th><th colspan="2"><?php 
    echo $idioma['FechaHoy'];