laide234 Posted August 11, 2006 Share Posted August 11, 2006 I'm a newbie, so this could be really simple... I have an onClick event attached to my "Add To Cart" button that adds a product to a shopping cart.onClick="window.location.href='<?php echo $cart_url; ?>';" where [b]$cart_url[/b] is [b]cart.php?action=add&p=72[/b]I would also like, when the item has been added to the cart, to go to the parent category page of that item. i.e. when you add a basketball to the cart (from index.php?c=300&p=72) it goes to to the list of sporting goods page (index.php?c=300)onClick="window.location.href='<?php echo $_SERVER['PHP_SELF'] . "?c=" . $catId; ?>';" ...How can I have that one button accopmlish both these tasks?? Please help. Link to comment https://forums.phpfreaks.com/topic/17200-location-question/ Share on other sites More sharing options...
bltesar Posted August 11, 2006 Share Posted August 11, 2006 to your first onClick event handler onClick="window.location.href='<?php echo $cart_url; ?>';" add ?c=300.Then set up your cart.php page to direct to the index.php?c=whatever page Link to comment https://forums.phpfreaks.com/topic/17200-location-question/#findComment-72839 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.