" >
                            </div>
                            <div id="dia2" style="float:left;">
                                <p style="font-size:12px;">&nbsp;Hasta :  
                                    <input id="txtfecha2" type="text" name="txtfecha2" size="9" onclick="calendarioHtmlxActoMedicoEstadistica('txtfecha2')" maxlength="10" value="<?php 
echo date("d/m/Y");
?>
" >
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td style="padding:5px;">
                            <?php 
require_once "../../cdatos/DReporte.php";
$o_DatosReporte = new DReporte();
$resultado = $o_DatosReporte->tablaAmbiFi();
?>
                            <div id="afiliacion" style="float:left;display: none">
                                <p style="font-size:12px;">Afiliacion :  
                                    <select id="cbxafiliacion">
                                        <?php 
foreach ($resultado as $key => $value) {
    ?>
<option value="<?php 
    echo $value[0];
    ?>
"><?php 
    echo $value[1];
    ?>
</option>
    input{
        height: 20px;
        border:1px solid #144B95;
        font-size: 11px;
        font-family: verdana;
        color:#576572;
    }
    input:hover{
        color:black
    }

</style>
<?php 
require_once "../../ccontrol/control/tablaAngelCompleta.php";
require_once "../../cdatos/DReporte.php";
$o_DatosReporte = new DReporte();
$array = $o_DatosReporte->listarCieUsado();
$tabla = new TablaAngelSayes();
$arrayWidth = array(0 => "50", 1 => "840");
$arrayTitulos = array(0 => "Id", 1 => "Cie Usado");
$arrayAlign = array(0 => "center", 1 => "left");
$arrayType = array(0 => "text", 1 => "text");
$arrayCursor = array(0 => "pointer", 1 => "pointer");
$arrayImagenPorCelda = array(0 => "0", 1 => "0");
$arrayUrlImagen = array(0 => "", 1 => "");
$arrayFunction = array(0 => "", 1 => "");
$arrayTitle = array(0 => "", 1 => "");
$arrayBitBusqueda = array(0 => "0", 1 => "1");
$arrayTypeBusqueda = array(0 => "0", 1 => "text");
$numDatosEnviadosFuncionCadena = 1;
$arrayFunctionXCelda = array(0 => "agregarCieReporte", 1 => "agregarCieReporte");
Beispiel #3
0
 public function lDatosExamenes($iIdUbicacionesImagenes)
 {
     $o_DReporte = new DReporte();
     $resultado = $o_DReporte->dDatosExamenes($iIdUbicacionesImagenes);
     return $resultado;
 }