Beispiel #1
0
<?php

//    require_once ("../../../hospitalizacion/cdatos/DRrhh.php");
require_once '../../clogica/LRrhh.php';
$oLRrhh = new LRrhh();
$arrayFilas = $oLRrhh->lListaPersonal();
?>

<html><head>
        <title>Index of /simedhweb/pruebas</title>
    </head>
    <body>
        <table border="1">
            <thead>
                <tr>
                    <?php 
$bit = 0;
foreach ($arrayFilas[0] as $indice => $dato) {
    if ($bit == 1) {
        ?>
                            <th><?php 
        echo $indice;
        $bit = 0;
        ?>
</th>

                            <?php 
    } else {
        $bit = 1;
    }
}