在网址上设置新值

时间:2015-04-29 08:56:43

标签: php

我有一个url,显示在php中使用GET方法发布的两个值。 我可以使用此示例 -

从网址获取值

假设网址为 http://example.com/?name=Hannes

我的代码

 <?php
    echo 'Hello ' . htmlspecialchars($_GET["name"]) . '!';
    ?>

输出 Hello Hannes!

我的问题是 - 如何在按钮点击方法帖子上将值设置为网址 例如

<form method="POST">
if(isset($_POST['$btn'){

 htmlspecialchars($_GET["name"])="Lucky";   /*If there is something like this*/

}
</form>

谢谢。

1 个答案:

答案 0 :(得分:1)

尝试 -

if(isset($_POST['$btn'){

    header('location:yourpage.php?name='.$yourValue);
    exit;   

}