如何使用标题位置?

时间:2016-06-08 08:37:53

标签: php

我可以使用标头位置传递值而不更改原始网址吗?

header("Location:seller.php?user=$user");

我试过这个,但网址最终会像

一样

seller.php?用户= 1

我希望它只是sell.php

1 个答案:

答案 0 :(得分:0)

简单地使用它,对于可以使用会话的值。

header("Location: Seller.php");

如果你想在页面上使用变量,请抓住类似的值

$user=$_GET['user'];