国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP $_GET ??

??? $_GET ??? method="get"? ???? ???? ?? ???? ? ????? ?? ??? ? ?? ?? ?????.

$_GET ??

?? ??? $_GET ??? method="get"? ???? ???? ?? ???? ? ?????.

GET ???? ???? ???? ??? ??? ?? ??? ? ? ???(????? ?? ???? ???) ???? ??? ??? ??? ????.

?? ?? ???????.

????

<html>
 <head>
     <meta charset="utf-8">
     <title>php中文網(wǎng)(php.cn)</title>
 </head>
 <body>
 
 <form action="php_get.php" method="get">
     名字: <input type="text" name="name"><br>
     性別:<input type="radio" name="sex" value="男" checked>男
     <input type="radio" name="sex" value="女">女<br>
     年齡: <input type="text" name="age"><br>
     <input type="submit" value="提交">
 </form>
 
 </body>
 </html>

?? php_get.php ???

<?php
 header("Content-type:text/html;charset=utf-8");    //設置編碼
 echo "你的姓名是:" .$_GET['name'] ."<br/>";
 echo "你的性別是:"  .$_GET['sex']."<br/>";
 echo "你的年齡是:".$_GET['age'];
 ?>

???? ?? ??:

2.png

??? ??? ?? ?? Url ?? ???? ?? ??????.

?? ?? method=" ??"?

HTML ???? method="get"? ???? ?? ?? ??? ?? URL? ?????.

??: ??? ????? ?? ??? ??? ?? ?? ? ??? ???? ? ???!

?, URL? ??? ???? ??? ??? ???? ?????. ?? ???? ??? ?????.

??: HTTP GET ??? ? ?? ??? ???? ????. ?? ?? 2000?? ??? ? ????.



???? ??
||
<html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> </head> <body> <form action="php_get.php" method="get"> 名字: <input type="text" name="name"><br> 性別:<input type="radio" name="sex" value="男" checked>男 <input type="radio" name="sex" value="女">女<br> 年齡: <input type="text" name="age"><br> <input type="submit" value="提交"> </form> </body> </html>