-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcesta_gridinfo.php
21 lines (20 loc) · 989 Bytes
/
cesta_gridinfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
//SUMA DE LOS PRODUCTOS Y TOTAL A PAGAR EN EL PIE DEL GRID CARRITO
if (!empty($_SESSION['username'])) {
$id_usuario = $_SESSION['userid'];
$query = "SELECT round(sum(cantidad),0) as cantidad,cantidad as cantidad_unitaria, round(sum(subtotal),2) FROM carrito where id_u=$id_usuario";
$result = mysql_query($query) or die(mysql_error());
$nombre = $_SESSION['username'];
while ($row = mysql_fetch_array($result)) {
$_SESSION['cantidad_productos'] = $row['cantidad'];
$cantidad_p = $_SESSION['cantidad_productos'];
$cantidad_unitatia = $row['cantidad_unitaria'];
$totalapagar=$row['round(sum(subtotal),2)'];
echo "<p class='total'>Total a pagar " . " : <b>$ " . $row['round(sum(subtotal),2)'] . "</b></p>";
echo "<p class='total'>Productos " . " : <b> " . $row['cantidad'] . "</b></p>";
echo "<br />";
}
} else {
echo "<p class='total'> <b> " . "Necesitas registrarte para poder comprar</b></p>";
}
?>