I have a 2D array like this:
$cart = array(array("Item", 6.99),
(array("Item 2", 13.99));
i am using this for a shopping cart i am making. I can add to it fine. What i need to be able to do is remove items from the array. I have been racking my brain trying to think of a way to do this and i've come up with nothing...