如何设置 $_GET 变量
如何设置 $_GET
函数可以使用的变量,而不用 action = GET
提交表单?
How do i set the variable that the $_GET
function will be able to use, w/o submitting a form with action = GET
?
推荐答案
您可以创建一个链接,在 href 中具有 get 变量.
You can create a link , having get variable in href.
<a href="www.site.com/hello?getVar=value" >...</a>
相关文章