Example #1
0
    echo sacarTooltip($idioma['Bimestre'], "", "R", 3);
    ?>
</th><th><?php 
    echo $idioma['Dps'];
    ?>
</th><th><?php 
    echo $idioma['NotaTope'];
    ?>
</th><th><?php 
    echo sacarTooltip($idioma['NotaAprobacion']);
    ?>
</th><th><?php 
    echo sacarTooltip($idioma['MontoCuotaPagar']);
    ?>
</th><th><?php 
    echo sacarTooltip($idioma['CantidadEtapas']);
    ?>
</th><th></th></tr></thead>
		<?php 
    foreach ($cur as $c) {
        $i++;
        ?>
            <tr>
            	<td class="der"><?php 
        echo $i;
        ?>
</td>
            	<td><?php 
        echo $c['Nombre'];
        ?>
</td>
Example #2
0
    <tr>
    	<td><?php 
    echo $i;
    ?>
</td>
        <td><?php 
    echo capitalizar($al['Paterno'] . " " . $al['Materno'] . " " . $al['Nombres']);
    ?>
</td>
        <td><?php 
    echo $cur['Nombre'];
    ?>
</td>
        <td><?php 
    echo fecha2Str($a['Fecha']);
    ?>
</td>
        <td><?php 
    echo hora2Str($a['Hora']);
    ?>
</td>
        <td><?php 
    echo sacarTooltip($t);
    ?>
</td>
	</tr>
    <?php 
}
?>
</table>
Example #3
0
include_once "../../login/check.php";
include_once "../../class/cursoarea.php";
$cursoarea = new cursoarea();
$cur = $cursoarea->mostrarAreas();
if (count($cur)) {
    ?>
<a href="#" class="btn btn-mini btn-success" id="exportarexcel"><?php 
    echo $idioma['ExportarExcel'];
    ?>
</a>
        <table class="table table-bordered table-striped table-hover table-condensed">
		<thead><tr><th>N</th><th><?php 
    echo $idioma['Nombre'];
    ?>
</th><th><?php 
    echo sacarTooltip($idioma['Abreviado'], "", "R", 5);
    ?>
</th><th><?php 
    echo $idioma['Area'];
    ?>
</th><th><?php 
    echo $idioma['Posicion'];
    ?>
</th></tr></thead>
		<?php 
    foreach ($cur as $c) {
        $i++;
        switch ($c['Area']) {
            case 1:
                $Area = $idioma['EducacionInicial'];
                break;