how can i make the session hold 2 arrays...
$_SESSION["cart"] = array();
$id = $_POST["id"];
$_SESSION["cart"][$id] = $id;
i woukd like the id to also hold another value.
now there is just an item id stored but i would like an item id and quantity
thanks