} elseif (!isset($_SESSION[$_POST[idprograma] . "recibos"])) {
    $_SESSION[$_POST[idprograma] . "recibos"] = 1;
} elseif ($_SESSION[$_POST[idprograma] . "recibos"] == 1) {
    echo "<script languaje=\"javascript\">location.href=\"index_1.php\"; </script>";
    exit;
}
$matriculita = new Matricula();
$numerogrupo = $matriculita->hallarNumeroGrupo($_POST["cadenagrupo"]);
//echo $numerogrupo.'  ';
$nivelgrupo = $matriculita->hallarNivelGrupo($_POST["cadenagrupo"]);
//echo $nivelgrupo.' ';
$indicegrupo = $matriculita->hallarIdGrupo($_POST["cadenagrupo"], $nivelgrupo);
//echo $indicegrupo;
$consigcarne = 1;
$refcarne = 0;
if (!$matriculita->siTieneCarne($_POST[cedula])) {
    //echo "no carne";
    $refcarne = 1;
    $valor_carne = 14000;
    $recibocarne = "SI";
} else {
    //echo "tiene carne";
    $refcarne = 0;
    $valor_carne = 0;
    $recibocarne = "NO";
}
if (comprobarCedula($link, $cedula)) {
    $refcarne = 0;
    $valor_carne = 0;
    $recibocarne = "NO";
}
Esempio n. 2
0
<?php

/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 * Description of pruebasmatriculs
 *
 *
 *
 */
include "DAL/Modelos/Matricula.php";
$m = new Matricula();
$j = $m->siTieneCarne(80826143);
var_dump($j);