コード例 #1
0
            }
        }
        
        function verAdjuntoCursoExterno(pdf){
            window.open ("../qualidad/doc-<?php 
echo $_SESSION['base'];
?>
/formacion/" + pdf,"nueva","resizable=yes, scrollbars=yes, width=700,height=600");
        }
        </script>
        <tr> 
          <td class="subtitulo" colspan="6">Formación Externa del Empleado</td>
        </tr>
        <?php 
//busco los datos de los cursos del empleado
$listadoCursosExternos = $clsCNFor->listadoCursosExternos($_GET['id']);
//var_dump($listadoCursosExternos);die;
if (is_array($listadoCursosExternos)) {
    echo '<tr>';
    echo '<td width="22%" align="center"><b>Formación</b></td>';
    echo '<td width="22%" align="center"><b>Centro de Impartición</b></td>';
    echo '<td width="21%" align="center"><b>Fecha Inicio</b></td>';
    echo '<td width="21%" align="center"><b>Fecha Fin</b></td>';
    echo '<td width="5%" align="center"></td>';
    echo '<td width="5%" align="center"></td>';
    echo '</tr>';
    //tiene datos, los presento
    for ($i = 0; $i < count($listadoCursosExternos); $i++) {
        $verAdjunto = '';
        if ($listadoCursosExternos[$i]['pdf'] !== '' && isset($listadoCursosExternos[$i]['pdf'])) {
            $verAdjunto = '<a href=javascript:verAdjuntoCursoExterno("' . $listadoCursosExternos[$i]['pdf'] . '")><img src="../images/pdf.png" width="17" style="vertical-align:50%" height="16" border="0" alt="Ver Adjunto"></a>';