$_GET 变量的数据结构同 $_POST 类似,也是一个关联数组,键名为表单元素的 name,用于收集以 HTTP GET 方式请求的数据。
表单 form.html:
<html> <body> <form name="commentform" method="get" action="comment.php"> <p> 称呼: <input type="text" name="nickname" /> </p> <input type="submit" value="提 交" /> </form> </body> </html>
将前面的例子表单改为 GET 方式,输入称呼后,在浏览器地址栏,看起来类似如下(IE 浏览器下中文可能会经 encode 编码):
http://www.520mg.com/html/comment.php?nickname=%D0%A1%C3%F7
取得 GET 表单数据:
<?php echo '您的称呼是:',$_GET["nickname"]; //输出:您的称呼是:小明 ?>