标签: php
我可以使用标头位置传递值而不更改原始网址吗?
header("Location:seller.php?user=$user");
我试过这个,但网址最终会像
seller.php?用户= 1
我希望它只是sell.php
答案 0 :(得分:0)
简单地使用它,对于可以使用会话的值。
header("Location: Seller.php");
如果你想在页面上使用变量,请抓住类似的值
$user=$_GET['user'];