16 lines
369 B
PHP
16 lines
369 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
include("seguridad.php");
|
||
|
|
include("functions.php");
|
||
|
|
|
||
|
|
$idPedido = stripinput($_GET["idPedido"]);
|
||
|
|
if(!isset($tabla)) $tabla = stripinput($_POST["tabla"]);
|
||
|
|
if(!isset($where)) $where = stripinput($_POST["where"]);
|
||
|
|
if(!isset($condicion)) $condicion = stripinput($_POST["condicion"]);
|
||
|
|
|
||
|
|
include_once("ver_pedido.php");
|
||
|
|
|
||
|
|
include_once("html/pie.php");
|
||
|
|
|
||
|
|
?>
|