Selamunaleyküm,

if (isset($_GET['add'])) {
	$_SESSION['cart_'.(int)$_GET['add']]+='1';
	header('Location: '.$page);
}

if (isset($_GET['remove'])) {
	$_SESSION['cart_'.(int)$_GET['remove']]--;
	header('Location: '.$page);
}

if (isset($_GET['delete'])) {
	$_SESSION['cart_'.(int)$_GET['delete']]='0';
	header('Location: '.$page);
}
böyle bir sepet sistemi buldum bu şekilde ürünleri ekliyorum ancak session'ları nasıl toplayacağımı bulamadım bir türlü

Örnek: Sepetinizde X tane ürün bulunmaktadır?