我想创建一个更改 PHP$_GET
变量的链接。例如:
URL: http://site.com/index&variable=hello&anothervariable=dontchangeme
<a href="variable=world">Click me</a>
(after click)
URL: http://site.com/index&variable=world&anothervariable=dontchangeme
我知道您可以这样做来更改页面 ( href="1.html"
),但我想做同样的事情,同时保持已经存在的 GET 变量。