I am building a shopping cart for my website. I am having trouble removing items from the cart. Here are two lines of code:
Code
array_push($_SESSION['cart'], array($SKU,$quantity));
$_SESSION['cart'] = array_diff($_SESSION['cart'], array($SKU,$quantity));
In this test, an array of SKU/Quantity should be added, then removed in the next line. However the array is being added and NOT removed. What am I doing wrong in my remove line?