Un Carrito De Compras
Pero Por Que Me Muestra Los Datos Asi
Código PHP:
Chequen La ImagenVer original
<?php $ordenc=$_POST["ttbxOrdenCompra"]; $cliente=$_POST["ttbxCliente"]; $obser=$_POST["ttbxObservaciones"]; ?> <html> <title>Pedidos Actuales</title> <head> <link href="img_bottom/Map.ico" type="image/x-icon" rel="shortcut icon"/> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="styles.css" rel="stylesheet" type="text/css"/> <style type="text/css"> .tit { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; color: #FFFFFF; } .prod { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #333333; text-transform:uppercase; } h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 17px; color: #990000; } h3{ font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 17px; color:#990000; } </style> </head> <body> <div id="divSecond" style="text-align:center"> <a href="Pedido.php" class="LabelStyle" style="color:blue">Pedido</a> <span class="LabelStyle"> / Pedidos Actuales</span> </div> <br> <table width="650" border="0" cellspacing="0" cellpadding="0" align="center"> <tr bgcolor="#333333" class="tit"> <td align="center">Orden De Compra</td> <td align="center">Cliente</td> <td align="center">Observaciones</td> <td align="center">Borrar</td> <td align="center">A-Detalles</td> </tr> <?php $contador=0; foreach($valores as $clave => $value){ $contador++; echo "<tr bgcolor=".$color[$contador%2]." class='prod'>"; echo "<td width='50' align='center'>$value</td>"; echo "<td width='100' align='center'>$value</td>"; echo "<td width='50' align='center'>$value</td>"; echo "<td width='40' align='center'>"; //echo "<a href='dcar.php?&clave=".$value."'><img src='img_bottom/borrar.gif' border='0' title='Borrar'></a></td>"; echo "<td width='50' align='center'><input type='button' value='A-Detalles'></input></td>"; echo "</tr>"; } }else{ ?> </table> <?php echo "<br>"; echo "<center class='prod'>No Existen Pedidos Actualmente</center>"; } echo "<pre>"; ?> </body> </html>
Espero Y Encuentren El Error