PHP - no puedo GUARDAR datos de carrito de compra en bd

 
Vista:
Imágen de perfil de john
Val: 7
Ha aumentado su posición en 23 puestos en PHP (en relación al último mes)
Gráfica de PHP

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>&nbsp;</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>&nbsp;</td>
</tr>
<tr align="center" style="background-color:#fff; color:#000">
  <td height="39">&nbsp;</td>
  <td align="right">E-Mail:</td>
  <td><label for="email"></label>
    <input type="email"  name="email" id="email" size="50" required></td>
  <td>&nbsp;</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">&nbsp;</td>
    <td width="100">&nbsp;</td>
    <td width="100">&nbsp;</td>
    <td width="100">&nbsp;</td>
    <td width="100">&nbsp;</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
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de jose carlos
Val: 134
Ha disminuido 1 puesto en PHP (en relación al último mes)
Gráfica de PHP

no puedo GUARDAR datos de carrito de compra en bd

Publicado por jose carlos (48 intervenciones) el 17/04/2018 02:42:02
donde esta al final.php
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar