what is wrong with this ?
Its not liking $_SESSION["aryProducts"][] = array("intProductid"=>$GET['intProductid'],"strProductname"=>"Productname","fltPrice"=>"Price"); for some reason. I think its wrong?
$ProductQuery = "SELECT *
FROM Products
WHERE Productid = \"".$GET['intProductid']."\"";
$ProductsResult = mysql_query($ProductQuery, $connection);
$row = mysql_fetch_array($ProductsResult);
$_SESSION["aryProducts"][] = array("intProductid"=>$GET['intProductid'],"strProductname"=>"Productname","fltPrice"=>"Price");
foreach($_SESSION["aryProducts"] as $aryPurchase)
{
echo "Product Id = ". $aryPurchase["intProductid"]. "<BR> \n";
echo "Product Description = ". $aryPurchase["strProductname"]. "<BR> \n";
echo "Product Price = ". $aryPurchase["fltPrice"]. "\n";
echo "</P>";
}