Esempio n. 1
0
    $tiempo_transcurrido = strtotime($ahora) - strtotime($fechaGuardada);
    //comparamos el tiempo transcurrido
    if ($tiempo_transcurrido >= 600) {
        //si pasaron 10 minutos o más
        session_destroy();
        // destruyo la sesión
        header("Location: ../index.html");
        //envío al usuario a la pag. de autenticación
        //sino, actualizo la fecha de la sesión
    } else {
        $_SESSION["ultimoAcceso"] = $ahora;
    }
}
require '../header.php';
require "../Modelo/MDP.php";
$md = new Distrito_Policial();
$sx = $md->Cargar_Distrito_Policial();
?>

 <h1 style="margin-top: -60px;">DISTRITO POLICIAL</h1>
<div class="row" style="margin-top: -90px;">
          <table class="table table-striped table-bordered">
            <thead>
              <tr>
                <th style="background:black; color:white; text-align: center;">Codigo</th>
                <th style="background:black; color:white; text-align: center;">Nombre</th>
                <th style="background:black; color:white; text-align: center;">Direccion</th>
                <th style="background:black; color:white; text-align: center;">Telefono</th>
                <th style="background:black; color:white; text-align: center;">Acciones</th>
              </tr>
            </thead>
Esempio n. 2
0
<?php

include_once '../Modelo/MDP.php';
include_once '../Modelo/MBitacora.php';
$md = new Distrito_Policial();
$bi = new Bitacora();
date_default_timezone_set("America/Asuncion");
$fecha = date("Y/m/d");
$hora = date("h:i:s");
$ac = "Eliminar Distrito Policial";
if (isset($_POST['Registrar'])) {
    $datos['Nombre'] = $_POST['Nombre'];
    $datos['Direccion'] = $_POST['Direccion'];
    $datos['Telefono'] = $_POST['Telefono'];
    $datos['Estado'] = 1;
    $sx = $md->Insertar($datos);
    header("Location: ../Vista/VDP.php");
}
if (isset($_POST['Modificar'])) {
    $datos['ID_DP'] = $_POST['ID'];
    $datos['Nombre'] = $_POST['Nombre'];
    $datos['Direccion'] = $_POST['Direccion'];
    $datos['Telefono'] = $_POST['Telefono'];
    $sx = $md->Modificar($datos);
    header("Location: ../Vista/VDP.php");
}
if (isset($_POST['Eliminar'])) {
    $datos['ID_DP'] = $_POST['ID'];
    $bt['CI_Oficial'] = 9001961;
    $bt['Fecha'] = $fecha;
    $bt['Hora'] = $hora;
Esempio n. 3
0
    $tiempo_transcurrido = strtotime($ahora) - strtotime($fechaGuardada);
    //comparamos el tiempo transcurrido
    if ($tiempo_transcurrido >= 600) {
        //si pasaron 10 minutos o más
        session_destroy();
        // destruyo la sesión
        header("Location: ../index.html");
        //envío al usuario a la pag. de autenticación
        //sino, actualizo la fecha de la sesión
    } else {
        $_SESSION["ultimoAcceso"] = $ahora;
    }
}
require '../header.php';
include_once "../Modelo/MDP.php";
$md = new Distrito_Policial();
$ID = $_REQUEST['ID'];
$sx = $md->Modificar_DP($ID);
$Nm = "";
$Dc = "";
while ($row = mysql_fetch_array($sx)) {
    $Nm = $row['Nombre'];
}
?>
 <form action="../Controlador/C_DP.php" method="POST">
<div class="container" >
<h2 style="font-size: 40px; color:black; margin-left: 55px; margin-top: 80px;">Eliminar Distrito Policial</h2>
 <section class="content bgcolor-1" style="margin-left: 80px;">
				<span class="input input--nao">
					<input class="input__field input__field--nao" type="text" id="input-1" name="ID" value="<?php 
echo "{$ID}";
Esempio n. 4
0
        $_SESSION["ultimoAcceso"] = $ahora;
    }
}
require '../header.php';
include_once '../Modelo/MTipo_D.php';
include_once '../Modelo/MD_Partes.php';
include_once '../Modelo/MOficial.php';
include_once '../Modelo/MDenuncia.php';
include_once '../Modelo/MD_Investigador.php';
include_once '../Modelo/MDP.php';
$mtd = new Tipo_Denuncia();
$mo = new Oficial();
$mdp = new Detalle_Partes();
$md = new Denuncia();
$mdi = new Detalle_Investigador();
$mp = new Distrito_Policial();
$CIO = $_SESSION['CI'];
$sz = $md->ND();
$Denunciante = "Denunciante";
$Imputado = "Imputado";
$Victima = "Victima";
$Testigo = "Testigo";
$sx = $mtd->Cargar_Tipo_D();
$sy = $mo->Cargar_Oficiales_Inv();
date_default_timezone_set("America/Asuncion");
$fecha = date("d/m/Y");
$hora = date("h:i:s");
while ($row = mysql_fetch_array($sz)) {
    $NC = $row['Estado'];
}
$sdi = $mdi->Cargar_Detalle($NC);