Ben gibi bir PHP OOP Cart Class yapılan this
print_r($_SESSION["cart"]);
sonuç:
Array ( [1] => 1 [3] => 2 )
How can I print this session, like a "real" cart? example:
echo "Your basket: ";
echo "ItemID: ".$cartid." Itemnumber:".$cartnumber;
Sepet parçası eklenmesi:
if (isset($_POST['submit']))
{
$cart= new Cart();
$cart->add($_POST['id'],2);
$item= $cart->getCart();
$_SESSION["cart"]=$cart;
}