15 lines
398 B
PHP
15 lines
398 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
include("seguridad.php");
|
||
|
|
include("functions.php");
|
||
|
|
liberacion();
|
||
|
|
$e = stripinput($_GET["e"]);
|
||
|
|
$a = stripinput($_GET["a"]);
|
||
|
|
$oid = stripinput($_GET["oid"]);
|
||
|
|
if(!isset($tabla)) $tabla = stripinput($_POST["tabla"]);
|
||
|
|
if(!isset($where)) $where = stripinput($_POST["where"]);
|
||
|
|
if(!isset($condicion)) $condicion = stripinput($_POST["condicion"]);
|
||
|
|
include_once("ver_usuario.php");
|
||
|
|
|
||
|
|
?>
|