Example #1
0
function formularioPuntos($pestanapag = "", $titulopagina = "", $accion = "", $idrci = "", $id = "", $valores = "", $meds = "")
{
    global $pdo;
    try {
        $sql = 'SELECT influencia FROM recsilumtbl
    WHERE recsilumtbl.id = :id';
        $s = $pdo->prepare($sql);
        $s->bindValue(':id', $idrci);
        $s->execute();
    } catch (PDOException $e) {
        $mensaje = 'Hubo un error extrayendo la influencia.' . $e;
        include $_SERVER['DOCUMENT_ROOT'] . '/reportes/includes/error.html.php';
        exit;
    }
    $influencia = $s->fetch();
    $nmediciones = $influencia['influencia'] == 0 ? 1 : 3;
    /*  echo 'para este estudio tantas mediciones '.$nmediciones.'<br>'.',fluencia '.$influencia['influencia']; exit(); */
    if ($meds !== "") {
        $mediciones = $meds;
    }
    $luxometros = getEquipos("Luxometro", $_SESSION['idot']);
    $idot = idotdeidrci($idrci);
    include 'formacapturarpuntos.html.php';
    exit;
}
Example #2
0
<?php

include_once "header.php";
echo getEquipos();
echo getPagos();
echo getMensajes();
echo getCrudo();
?>
</html>