如何使用$ GET在php中向同一页面发出请求?

时间:2016-02-26 14:22:08

标签: php

我不知道如何使用$ GET向同一页面发出请求。请帮帮我

enter image description here

1 个答案:

答案 0 :(得分:0)

使用$ _GET很简单,只需附加查询字符串

即可
<a href="thispage.php?someParam=someValue">send get request</a>

要检索:

<?php
if(isset($_GET['someParam'])){
    echo $_GET['someParam']; // will echo "someValue";
}
?>

详情请见此处:http://php.net/manual/en/reserved.variables.get.php