<?php
session_start();
if (isset($_SESSION['cart'])){
foreach ($_SESSION['cart'] as $key => $value){
//echo "Product Number $key Quantity $value<br />";
}
}
go at the top of both pages. On the checkout page I have
<?php
/*foreach($key as $value){
echo $value;
}*/
?>
where I want the session variables to transfer, but it is not working. Can someone please walk me through this? The help would be much appreciated.

New Topic/Question
Reply



MultiQuote







|