Código PHP:
va con una Ver original
$sesion=[" carro"];
Código PHP:
, va recogiendod atos desde una pagina q la manda a una de manera oculta y la manda al carrito, por medio de un selec y un insert respectivamente, la manera de sumar seria creo qie igual, desde el carrito mandar datos a otra pagina y que esta lo devuelva ya calculado en caso de que pida dos del mismo, os dejo el codigo del carrito, donde aparece los productos ya elegidos Ver original
$sesion=["MM_IdUsuario"];
Código PHP:
lo intente con un foreach , pero cuando lo hago me sale error, y pie de pagina, otra cosa seria es como cerrar la sesion del carro cuando se termine la compra, si que ello haga que el usuario tenga que volver a acceder a la pagina, gracias Ver original
<?php require_once('Connections/conexionzapatos.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": break; case "double": break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } $editFormAction = $_SERVER['PHP_SELF']; } $insertGoTo = "prueb1234.php"; $insertGoTo .= $_SERVER['QUERY_STRING']; } } $varUsuario_DatosCarrito = "0"; $varUsuario_DatosCarrito = $_SESSION["MM_IdUsuario"]; } $query_DatosCarrito = sprintf("SELECT * FROM tblcarrito WHERE tblcarrito.idUsuario = %s AND tblcarrito.intTransaccionEfectuada = 0", GetSQLValueString($varUsuario_DatosCarrito, "int")); $Transferencia="Transferencia"; $multiplicador = ObtenerIVA()/100; $valordelIVA = $preciototal * $multiplicador; ?> <?php if ($totalRows_DatosCarrito > 0) { // Show if recordset not empty ?> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr class="ver"> <td width="23%">Producto</td> <td width="33%">Unidades</td> <td width="33%">Precio</td> <td width="9%">Acciones</td> </tr> <?php $preciototal = 0;?> <?php do { ?> <tr class="letra"> <td align=""><?php echo ObtenerNombreProducto($row_DatosCarrito['idProducto']); ?></td> <td><?php echo $row_DatosCarrito['intCantidad']; ?><a href="sumar_producto.php?idlinea=<?php echo $row_DatosCarrito['intContador']; ?>">+</a> <?php if ($row_DatosCarrito['intCantidad']!=1){?> <a href="restar_producto.php?idlinea=<?php echo $row_DatosCarrito['intContador']; ?>">-</a> <?php }?></td> <td ><?php echo ObtenerPrecioProducto($row_DatosCarrito['idProducto']); ?> <span class="letra">Euros</span></td> <td><a href="eliminar_producto.php?recordID=<?php echo $row_DatosCarrito['idProducto']; ?>">Eliminar</a></td> </tr> <?php $preciototal = $preciototal + ObtenerPrecioProducto($row_DatosCarrito['idProducto']);?> <tr> <td> </td> <td align="right">Subtotal:</td> <td align="left"> <?php $multiplicador = (100 + ObtenerIVA())/100; $valorconIVA = $preciototal * $multiplicador; echo $valorconIVA;?> </td><td> <td width="2%"> </td> </tr> </tr> </table> <table width="433" height="32" align="left"> <td width="425" align="center"> <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1"> <input type="submit" value="Insertar registro" /> </tr> <input type="hidden" name="idCompra" value="" /> <input type="hidden" name="idUsuario" value="<?php echo $row_DatosCarrito['idUsuario']; ?>" /> <input type="hidden" name="fchFecha" value="<?php echo $hoy ?>" /> <input type="hidden" name="intTipoPago" value="<?php echo $Transferencia ?>" /> <input type="hidden" name="dblTotal" value="<?php $multiplicador = (100 + ObtenerIVA())/100; $valorconIVA = $preciototal * $multiplicador; echo $valorconIVA;?>" /> <input type="hidden" name="intEstado" value="1" /> <input type="hidden" name="strNombre" value=" <?php echo ObtenerNombreUsuario($_SESSION['MM_IdUsuario']) ?>" /> <input type="hidden" name="MM_insert" value="form1" /> </form> </table> <?php } // Show if recordset not empty ?> <?php if ($totalRows_DatosCarrito == 0) { // Show if recordset empty ?> <p> <table width="363" align="center"> <tr> <td width="355" align="center">Su Carro Esta Vacio</td> </tr> </table> <?php } // Show if recordset empty ?>