forked from jeruick/A-Pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
carrito.php
57 lines (48 loc) · 1.35 KB
/
carrito.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require_once("clases/Conexion.php");
session_start();
if(isset($_POST['id'])) // Request para modificar el numero de articulos que el usuario desea comprar
{
$id = $_POST['id'];
$cantidad = $_POST['cantidad'];
if(isset($_SESSION['carro'][$id]))
{
$_SESSION['carro'][$id]['cantidad'] = $cantidad;
echo $cantidad;
}
}
else if(isset($_GET["id"])) //Request para meter un articulo en el carrito y luego retornarlo como JSON
{
$id = $_GET["id"];
$result = mysqli_query($conexion, "SELECT * FROM articulo WHERE id = $id");
$article = mysqli_fetch_assoc($result);
$imagen = $article["foto_articulo"];
$nombre = $article["nombre_articulo"];
$precio = $article["precio_unidad"];
$cantidad = $article["cantidad"];
$descripcion = $article["descripcion"];
if(empty($_SESSION['carro'][$id]))
{
$articulo = array('imagen' => $imagen, 'nombre' => $nombre, 'precio' => $precio,
'existencia' => $cantidad, 'descripcion' => $descripcion, 'cantidad' => 1);
$_SESSION['carro'][$id] = $articulo;
}
else
{
return;
}
echo json_encode($_SESSION['carro']);
}
else // si no es ninguna de las anteriores entonces es un simple retorno cuantos articulos hay en en carrito
{
$i = 0;
if(isset($_SESSION['carro']))
{
foreach ($_SESSION['carro'] as $key => $value)
{
$i++;
}
}
echo $i;
}
?>