...some html 当用户提交表单时,URI 不显示参数: http://example-6ren">
gpt4 book ai didi

PHP_SELF 和 GET 参数

转载 作者:行者123 更新时间:2023-11-28 01:31:14 26 4
gpt4 key购买 nike

当我在表单中使用 $_SERVER['PHP_SELF'] 将页面重定向到自身时,例如:

<form method = "get" action = "<?php echo $_SERVER['PHP_SELF']; ?>">
...some html
</form>

当用户提交表单时,URI 不显示参数:

http://example.com/page.php

而不是这个(我正在尝试做的那个)

http://example.com.page.php?parameter=value

导致,当用户刷新页面时,并没有处理GET参数,因为它不存在。我该如何解决这个问题?

最佳答案

您可以像下面的示例一样放置一个空表单操作:

<form action="" method="GET">

将保留所有 GET 参数

关于PHP_SELF 和 GET 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30181739/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com