
Ashraf Gheith - 2015-09-22 07:26:00 -
In reply to message 1 from mahdi ghas
public function totalCart(){
$total = 0;
if($_SESSION['cart'] != ""){
$cart = json_decode($_SESSION['cart'], true);
for($i=0;$i<count($cart);$i++){
$lines = $this->getProductData($cart[$i]["product"]);
$total += ($lines->price*$cart[$i]["count"]);
}
}
return $total;
}
Just add this method to the cart.