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

PHP ?? ?? ???? $_POST

1. $_POST ??

?? ??? $_POST ??? method="post"? ??? ?? ???? ? ?????.

POST ???? ???? ???? ??? ???? ????? ??? ???(????? ?? ???? ???? ??) ???? ??? ??? ??? ????.

??: ??? ????? POST ???? ???? ?? ???? 8MB???(php.ini ???? post_max_size? ???? ??? ? ??).

?? ??? POST ??? ??

?: ??? ??? ????

<html>
<head>
<meta charset="utf-8">
<title>php中文網(wǎng)(php.cn)</title>
</head>
<body>
<!-- 新建一個帶有兩個輸入框和一個提交按鈕的表單 -->
<!-- action為提交的的那個頁面,method為提交方式,有$POST和$GET兩種 -->
<form action="" method="post">
名字: <input type="text" name="name">
<br/>
年齡: <input type="text" name="age">
<br/>
<input type="submit" value="提交">
</form>
<hr/>
 大家好,我是 <?php echo $_POST["name"]; ?>!<br>
今年 <?php echo $_POST["age"]; ?>  歲。
</body>
</html>

??? ???? ????

??? ???? 3_2.php?? ??? ??? ????.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php.cn</title>
</head>
<body>
 大家好,我是 <?php echo $_POST["name"]; ?>!<br>
今年 <?php echo $_POST["age"]; ?>  歲。   
</body>
</html>

??: ?? ???? ??? ?? ???? ???? ??? GET? POST? ??????.

2. method="post"? ?? ??????

POST ???? ???? ???? ??? ??? ????? ???? ??? ???? ??? ??? ??? ????.

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

3. PHP $_REQUEST ??

  • ?? ????? $_GET ? $_POST ?? ???? ????? $_REQUEST? ???? ??? ?? ????.

  • ?? ??? $_REQUEST ???? $_GET, $_POST ? $_COOKIE? ??? ???? ????.

?? ? ???? should? ??? ? ????. ??? ??? ????.

大家好,我是 <?php echo $_REQUEST["name"]; ?>!<br>
今年 <?php echo $_REQUEST["age"]; ?>  歲。

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


???? ??
||
<html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> </head> <body> <!-- 新建一個帶有兩個輸入框和一個提交按鈕的表單 --> <!-- action為提交的的那個頁面,method為提交方式,有$POST和$GET兩種 --> <form action="" method="post"> 名字: <input type="text" name="name"> <br/> 年齡: <input type="text" name="age"> <br/> <input type="submit" value="提交"> </form> <hr/> 大家好,我是 <?php echo $_POST["name"]; ?>!<br> 今年 <?php echo $_POST["age"]; ?> 歲。 </body> </html>