16 lines
439 B
PHP
16 lines
439 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
include_once("seguridad.php");
|
||
|
|
include("functions.php");
|
||
|
|
|
||
|
|
$idOferta = isset($_GET["idOferta"]) ? stripinput($_GET["idOferta"]) : "";
|
||
|
|
$tabla = isset($_POST["tabla"]) ? stripinput($_POST["tabla"]) : "";
|
||
|
|
$where = isset($_POST["where"]) ? stripinput($_POST["where"]) : "";
|
||
|
|
$condicion = isset($_POST["condicion"]) ? stripinput($_POST["condicion"]) : "";
|
||
|
|
|
||
|
|
include_once("ver_oferta.php");
|
||
|
|
|
||
|
|
include_once("html/pie.php");
|
||
|
|
|
||
|
|
?>
|