我有一个显示购物车和产品的功能,因此在添加产品后(通过GET
) 我希望它返回到常规域。
这是更新购物车的代码:
$page = $_SERVER[\'PHP_SELF\'];
// if the product is added to the cart
if (isset($_GET[\'add\'])) {
$_SESSION[\'cart_\'.$_GET[\'add\']]++;
header(\'Location: \'.$page);
// echo \'added\';
}
现在购物车显示在我的主页上
http://localhost/tester/
, 添加产品后,url变为
http://localhost/tester/?add=1
, 但我想让它恢复到
http://localhost/tester/
但我无法做到这一点。
有什么想法吗?