Tema: Carrito php
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/02/2016, 19:50
byrong
 
Fecha de Ingreso: enero-2016
Ubicación: Venezuela
Mensajes: 139
Antigüedad: 8 años, 3 meses
Puntos: 3
Respuesta: Carrito php

Intenta en mete_producto.php colocar esto, cambié get por post..
Código PHP:
<?PHP
include("lib_carrito.php"); 
$_SESSION["ocarrito"]-> introduce_producto($_post["id"], $_post["nombre"], $_post["precio"]); 

 
?> 
<html> 
<head> 
       <title>Introduce Producto</title> 
</head> 
<body> 

Producto introducido. 
<br> 
<br> 
<a href="index.php">- Volver</a> 
<br> 
                                                                                                                     <br> 
<a href="ver_carrito.php">- Ver carrito</a> 

</body> 
</html>
Saludos..