pues eso, tengo un lio con esto, lo tengo casi terminado, pero... en el tema de como comprar no lo consigo arreglar, he mirado miles de codigo, pero no los entiendo bien, es decir, en una pagina compra, en otra aparece el producto/s comprado/s, con el iva y todo, pero... a la hora de confirmar esa compra no se como llevarme esos datos y confirmar la compra, os dejo el codigo a ver si me podeis ayudar, hasta ahora siempre lo haceis,
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) {
}
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ?
intval($theValue) : "NULL"; break;
case "double":
$theValue = ($theValue != "") ?
doubleval($theValue) : "NULL"; break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$varUsuario_DatosCarrito = "0";
if (isset($_SESSION["MM_IdUsuario"])) { $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,