no puedo GUARDAR datos de carrito de compra en bd
Publicado por john (5 intervenciones) el 13/04/2018 21:30:33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<br>
<p align="center">Bienvenido: <?php echo $_SESSION["usuario"]; ?></p><br />
<p align="center">Este es el resumen de su compra, verifique su pedido e ingrese sus datos</p>
<br>
<form method="post" action="final.php">
<table1 width="" height="" border="1" align="center" id="tablacarrito">
<tr align="center" style="background-color:#fff; color:#000">
<th> </th>
<th align="right">Nombre:</th>
<th><label for="nombre"></label>
<input type="text" name="nombre" id="nombre" size="50" value="<?php echo $_SESSION["usuario"]; ?>" required></th>
<td> </td>
</tr>
<tr align="center" style="background-color:#fff; color:#000">
<td height="39"> </td>
<td align="right">E-Mail:</td>
<td><label for="email"></label>
<input type="email" name="email" id="email" size="50" required></td>
<td> </td>
</table1>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
</style>
</div><table>
<tr>
<td width="300">PRODUCTO</td>
<td width="200">PRECIO</td>
<td width="200">CANTIDAD</td>
<td width="200">TOTAL</td>
</tr>
<br>
<?php
if(isset($_SESSION['carrito'])){
$total=0;
for($i=0;$i<=count($compras)-1;$i++){
if($compras[$i]!=NULL){ ?>
<tr>
<td width="300"><?php echo $compras[$i]['nombre']; ?></td>
<td width="200">$<?php echo $compras[$i]['precio']; ?></td>
<td width="200"><?php echo $compras[$i]['cantidad'];?></td>
<td width="200">$
<?php echo $compras[$i]['cantidad'] * $compras[$i]['precio'];?>
</td>
</tr width="200">
<?php
$total= $total+($compras[$i]['cantidad'] * $compras[$i]['precio']);
}
}
}
?>
<tr>
<td width="100"> </td>
<td width="100"> </td>
<td width="100"> </td>
<td width="100"> </td>
<td width="100"> </td>
<tr></tr><tr></tr>
<td width="100"><p>TOTAL A PAGAR::</p></td>
<td width="100"><p><?php if(isset($_SESSION['carrito'])){ echo "$ ".$total." Dolares ";}?></p>
<input type="submit" name="button" id="button" value="enviar_pedido"><br>
<input type="button" name="imprimir" value="Imprimir pedido" onclick="window.print();"></td>
</tr>
</table>
</form>
Valora esta pregunta
0