示例#1
0
                                        <th>CARGO</th> 
                                        <th>Ubicación</th>
                                        <th>CONTRATO</th>
                                        <th>JORNADA LABORAL</th>
                                        <th>FECHA INICIO</th>
                                        <th>DESCRIPCION</th>
                                        <th>TIPO</th>
                                        <th>PUBLICADO EL</th>
                                        <th>ACCIONES</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php 
if (isset($rutEmpresa)) {
    $var_publicaciones = $obj_publicacion->obtienePublicacionesEmpresa($rutEmpresa);
    $var_cantidad_publicaciones = count($var_publicaciones);
    ?>
                                        <?php 
    for ($j = 0; $j < $var_cantidad_publicaciones; $j++) {
        ?>
                                            <tr>

                                                <td><?php 
        echo $var_publicaciones[$j][1];
        ?>
</td>
                                                <td><?php 
        echo $var_publicaciones[$j][2];
        ?>
</td>