2011-04-04 15:16:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
include("seguridad.php");
|
|
|
|
|
include("functions.php");
|
|
|
|
|
|
2011-04-06 12:07:57 +00:00
|
|
|
$idPedido = isset($_GET["idPedido"]) ? stripinput($_GET["idPedido"]) : "";
|
2011-05-19 08:46:58 +00:00
|
|
|
$tabla = isset($_POST["tabla"]) ? stripinput($_POST["tabla"]) : "";
|
|
|
|
|
$where = isset($_POST["where"]) ? stripinput($_POST["where"]) : "";
|
|
|
|
|
$condicion = isset($_POST["condicion"]) ? stripinput($_POST["condicion"]) : "";
|
2011-04-04 15:16:10 +00:00
|
|
|
|
|
|
|
|
include_once("ver_pedido.php");
|
|
|
|
|
|
|
|
|
|
include_once("html/pie.php");
|
|
|
|
|
|
|
|
|
|
?>
|