如何在php中为查询字符串构建超链接
我有一个问题,如何在当前的 url 中添加另一个 get 变量,
book.php?action=addressbook
我想添加
book.php?action=addressbook&page=2
如何为此生成超链接,我已经使用 $_SERVER['PHP_SELF'] 尝试过,但查询字符串不包含在 url 中,它显示了一些内容就像
book.php?page=2
我想将其他变量附加到查询字符串
请帮助
I have a question, How I can add another get variable in my current url
book.php?action=addressbook
i want to add
book.php?action=addressbook&page=2
how to generate hyperlink for this, i have tried it using $_SERVER['PHP_SELF'] but query string are not included in url its showing something like that
book.php?page=2
I want to append my other variables to query string
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用 http_build_query(); 附加更多参数 您的网址:
例如
You can also use http_build_query(); to append more params to your URL
for instance: