Hi, I have this link below which adds certain item to my shopping cart and redirects to the cart page.. I was wondering if I could Add the item to the cart, but NOT redirect to the cart page unless I click on another link that links to the cart?
(the view_cart.php3 includes the shoppingcart.php3 which contains the function for add, and delete)
echo "<A HREF=\"view_cart.php3?add=".urlencode($row[product]);
if (!$ShoppingCart)
echo "&session=$session\">";
else
echo "\">";
echo "Add this item to your cart</A><BR><BR>";
}
the form tag is like : <form method=post action="currentpage.php>
THanks