hola chicos llevo varios dias liado, soy novato, estoy siguiendo tutoriales para hacer una web , y me quede frenado en el carrito, tengo una una pagina que recoge los datos comprados, que hace la suma con el IVA , pero no se como llevarme esos datos, es decir, que pueda pagar mediante transferencia, opte por el boton paypal, pero no me sirve , no deja ponerle el precio que yo necesito en cada momento, tendria que por ejemplo recoger el total de la suma en otro archivo, con la cantidad a pagar y la confirmacion de pago, dejo aqui unos archivos a ver si sirven,
aqui es donde sale la opcion comprar
Código PHP:
Ver original<?php require_once('Connections/conexioncolegio.php'); ?>
<?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;
}
}
$varProducto_DatosProducto = "0";
if (isset($_GET["recordID"])) { $varProducto_DatosProducto = $_GET["recordID"];
}
$query_DatosProducto = sprintf("SELECT * FROM tblproductos WHERE tblproductos.isProducto = %s", GetSQLValueString
($varProducto_DatosProducto, "int")); ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Cachemira</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="estilo/principal.css" rel="stylesheet" type="text/css" />
<?php include("includes/header.php"); ?>
</head>
<body>
<?php include("includes/afterbody.php"); ?>
<div class="container">
<div class="header"><?php include("includes/cabecera.php"); ?></div>
<div class="sidebar1"><?php include("includes/menuizquierda.php"); ?>
</div>
<div class="content"><!-- InstanceBeginEditable name="Contenido" -->
<h1><?php echo $row_DatosProducto['srtNombre']; ?></h1>
<!-- InstanceEndEditable -->
<p></p>
<!-- InstanceBeginEditable name="titulo" --> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="documentos/productos/<?php echo $row_DatosProducto['strImagen']; ?>" width="450" height="450" /></td>
<td valign="top"><p><?php echo $row_DatosProducto['srtNombre']; ?></p>
<p><?php echo $row_DatosProducto['dblPrecio']; ?></p>
<?php if ((isset($_SESSION['MM_isUsuario'])) && ($_SESSION['MM_isUsuario']!="")) {?>
<p><a href="carrito_add.php?recordID=<?php echo $row_DatosProducto['isProducto']; ?>">Comprar Producto</a></p>
<?php }
else
{?>
Necesitas <a href="usuario.php"><strong>darte de alta</strong></a> para comprar. Es gratuito.
<?php }?></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table><!-- InstanceEndEditable --></div>
<div class="footer">
<?php include("includes/pie.php"); ?>
<!-- end .footer --></div>
<!-- end .container --></div>
</body>
<!-- InstanceEnd --></html>
<?php
?>
aqui me recoge el pedido y me ajusta la compra
Código PHP:
Ver original<?php require_once('Connections/conexioncolegio.php'); ?>
<?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_isUsuario"])) { $varUsuario_DatosCarrito = $_SESSION["MM_isUsuario"];
}
$query_DatosCarrito = sprintf("SELECT * FROM tblcarrito WHERE tblcarrito.isUsuario = %s AND tblcarrito.intTransaccionEfectuada = 0", GetSQLValueString
($varUsuario_DatosCarrito, "int")); ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Cachemira</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="estilo/principal.css" rel="stylesheet" type="text/css" />
<?php include("includes/header.php"); ?>
</head>
<body>
<?php include("includes/afterbody.php"); ?>
<div class="container">
<div class="header"><?php include("includes/cabecera.php"); ?></div>
<div class="sidebar1"><?php include("includes/menuizquierda.php"); ?>
</div>
<div class="content"><!-- InstanceBeginEditable name="Contenido" -->
<h1>Carrito de la Compra</h1>
<!-- InstanceEndEditable -->
<p></p>
<table width="630" cellpadding="0" cellspacing="0">
<tr align="center">
<td width="178">Producto:</td>
<td colspan="3">Unidades:</td>
<td colspan="3">Precio:</td>
<td width="82">Acciones:</td>
</tr>
<?php $preciototal = 0;?>
<?php do { ?>
<tr>
<td align="center"><?php echo ObtenerNombreProducto($row_DatosCarrito['isProducto']); ?></td>
<td colspan="3" align="center"><?php echo $row_DatosCarrito['intCantidad']; ?></td>
<td colspan="3" align="center"><?php echo ObtenerPrecioProducto($row_DatosCarrito['isProducto']); ?> Euros</td>
<td>Eliminar</td>
</tr>
<?php $preciototal = $preciototal + ObtenerPrecioProducto($row_DatosCarrito['isProducto'])?>
</tr>
<tr>
<td> </td>
<td width="99" align="right" bgcolor="#FFFFB3" >Subtotal: </td>
<td width="60" bgcolor="#FFFFB3"></td>
<td width="73" bgcolor="#FFFFB3" align="rigth"><?php echo $preciototal; ?> Euros</td>
<td width="69"> </td>
<td></td>
</tr>
<tr>
<td align="right" bgcolor="#FFFFB3">IVA: </td>
<td bgcolor="#FFFFB3" ></td>
<td bgcolor="#BBFFBB" align="center"><strong><?php echo ObtenerIVA(); ?>%</strong></td>
</tr>
<tr>
<td></td>
<td align="right"></td>
<td align="right"></td>
<td align="right" bgcolor="#FFFFB3">Valor del IVA: </td>
<td bgcolor="#FFFFB3"></td>
<td bgcolor="#FFFFB3" ><?php $multiplicador = ObtenerIVA()/100;
$valordelIVA = $preciototal * $multiplicador;
echo $valordelIVA ;?>Euros</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"></td>
<td align="right" bgcolor="#FFFFB3">Total con iva:</td>
<td bgcolor="#FFFFB3"></td>
<td bgcolor="#FFFFB3"><?php
$multiplicador = (100 + ObtenerIVA())/100;
$valorconIVA = $preciototal * $multiplicador;
echo $valorconIVA;?> Euros</td>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
<table width="279" cellpadding="0" cellspacing="0">
<tr>
<td width="76"> </td>
<td width="201" class="pago" align="center"><a href="carrito_forma_pago.php"><strong>Seleccionar Forma de Pago</strong></a></td>
</tr>
</table>
</div>
<div class="footer">
<?php include("includes/pie.php"); ?>
<!-- end .footer --></div>
<!-- end .container --></div>
</body>
</html>
<?php
?>