php simple shopping cart class and html ajax example
composer require stnc/shopping-cart
SCREENSHOT
// use use \Stnc\ShoppingCart\Cart;
$cart_name = 'stnc'; // sepetin session değerine bir değer atadık
$cart = new Cart($cart_name);
$cart->groups=false;
add to cart
$data = array(
'productID' => 100,
'productName' => "ice cream",
'productImageURL' => "https://example.org/icecream.jpg",
'URL' => "https://example.org/product/100",
'price' => 40.99,
"totalEach" => 1,
'stockUnit'=>'unit',
"totalPrice" => 40.99
);
$cart->addToCart("100", $data);
echo '<pre>';
print_r($cart->getArray());
echo '</pre>';
cart to remove
$cart->removeCart(100);
echo '<pre>';
print_r($cart->getArray());
echo '</pre>';
cart json info
$cart->getJson();
cart empty
$cart->emptyCart();
echo '<pre>';
print_r($cart->getArray());
echo '</pre>';
cart to result array
echo '<pre>';
print_r($cart->getArray());
echo '</pre>';
//
print_r( $cart->cartCount());
gives information about the total of items in the basket
print_r($cart->cartCount());
Cart information
print_r($cart->cartInfo());
demo page thx
https://startbootstrap.com/templates/heroic-features/