04/11/2008, 16:34
|
| | | Fecha de Ingreso: julio-2008 Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 6 meses Puntos: 2 | |
Respuesta: Ayuda con mensaje David el Grande, sigue dandome una ventana en blanco?????.
Este es el codigo que se ha avanzado:
pedidoNoatendido.php
<?php
include('conec.php');
conectarse();
$qry=mysql_query("select * from factura where estatus='pendiente' order by idFactura desc");
?>
<html>
<head>
<title>Administrador de Pedidos Pendientes</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type='text/javascript'>
function EstoyReLoco(valor)
{
TuLink = document.getElementById('TuLink');
TuLink.href = "consultarPedido.php?idFactura=" + valor;
}
</script>
</head>
<body>
<form name="" method="post" action="accion.php">
<table>
<tr>
<td align="center" width="4%"><strong>Id</strong></td>
<td align="center" width="21%"><strong>Destinatario</strong></td>
<td align="center" width="5%"><strong>Acción</strong></td>
</tr>
<?php
while($row=mysql_fetch_array($qry)){
?>
<tr>
<td align="center"><?php echo $row['idFactura'] ?></td>
<td><?php echo $row['destinatario'] ?></td>
<td align="center"><input type="radio" name="un_nombre" value="<?php echo $row['idFactura'] ?>" onclick="EstoyReLoco(this.value)"></td>
</tr>
<?php } ?>
<tr valign="middle">
<td align="center"><input type="submit" name="mismo_nombre" value="Consultar Pedido"></td>
<td align="center"><input type="submit" name="mismo_nombre" value="Cambiar a Pedido Atendido"></td>
</tr>
</table>
</form>
</body>
</html>
este es el accion.php
<?php
switch($_POST["mismo_nombre"]){
case "Consultar Pedido":
include(consultarPedido.php);
break;
case "Cambiar a Pedido Atendido":
header("Location: actualizarPedido.php");
break;
}
?>
y este es parte del consultarPedido.php
<?php
session_start();
?>
<?
include('conec.php');
conectarse();
$qry=mysql_query("select * from factura where idFactura="$_POST["un_nombre"]"") or die("Error en consulta:" .mysql_error() );
if($query=mysql_fetch_array($qry))
{
?>
<html>
<head>
<title>Extraccion de Pedidos</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h1 align="center">ORDEN DE PEDIDO Nº <?php echo $query['idFactura'] ?></h1>
<p>
<h3 align="center">FECHA Y HORA DE PEDIDO: <?php echo $query['fechaFactura'] ?></h3>
<p> |