aqui ha recogido los datos , precios iva y el total
Código PHP:
Ver original
<?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; } } $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")); ?> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="tabla"> <tr> <td>Producto</td> <td>Unidades</td> <td>Precio</td> <td>Acciones</td> </tr> <?php $preciototal = 0;?> <?php do { ?> <tr> <td><?php echo ObtenerNombreProducto($row_DatosCarrito['idProducto']); ?></td> <td><?php echo $row_DatosCarrito['intCantidad']; ?></td> <td><?php echo ObtenerPrecioProducto($row_DatosCarrito['idProducto']); ?> Euros</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><?php echo $preciototal; ?> Euros</td> <td> </td> </tr> <tr> <td> </td> <td align="right">IVA:</td> <td><?php echo ObtenerIVA(); ?>%</td> <td> </td> </tr> <tr> <td> </td> <td align="right">Valor del IVA:</td> <td><?php $multiplicador = ObtenerIVA()/100; $valordelIVA = $preciototal * $multiplicador; echo $valordelIVA;?> Euros</td> <td> </td> </tr> <tr> <td> </td> <td align="right">Total con IVA:</td> <td><?php $multiplicador = (100 + ObtenerIVA())/100; $valorconIVA = $preciototal * $multiplicador; echo $valorconIVA;?> Euros</td> <td> </td> </tr> </table> <a href="carrito_forma_pago.php">Seleccionar Forma de Pago</a> </div> </div> </body> </html> <?php
tengo creada otra pagina, pero no se como recoger estos datos, y mandarlos a por ejemplo paypal,