Hi
I am trying to develop a cart, the code I would like to use is below. The problem is when I try to echo out the results all I get is. Obviously because it is an associate array. Can some tell me how to display the results on a page
<?php
$qty = 5;
$productId = 5;
$price = 5;
$prodName = 5;
$_SESSION['cart'][] = array(
"qty" => $qty,
"productId" => $productId,
"price" => $price,
"prodName" => $prodName
);
echo $_SESSION['cart'];
?>
Thanks All