PHP中GET與POST變數
一,php中GET變數
<form action="lfwa.zrghs.com" method="get">
名字: <input type="text" name="fname">
年齡: <input type="text" name="age">
<input type="submit" value="提交">
歡迎 <?php echo $_GET["fname"]; ?>!<br>
你的年齡是 <?php echo $_GET["age"]; ?> 歲。
二,PHP中POST變數
<form action="gszy.zrghs.com" method="post">
名字: <input type="text" name="fname">
年齡: <input type="text" name="age">
<input type="submit" value="提交">
</form>
歡迎 <?php echo $_POST["fname"]; ?>!<br>
你的年齡是 <?php echo $_POST["age"]; ?> 歲。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69990906/viewspace-2745797/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- GET與POST區別
- PHP與Curl採用的GET,POST,JSON方式請求APIPHPJSONAPI
- post與get的區別
- GET 與 POST 的區別
- get與post的區別?
- HTTP中Get與Post有什麼區別?HTTP
- Get/Post
- GET與POST的真正區別
- POST與GET請求區別
- get與post的請求區別
- get與post的區別總結
- cURL實現傳送Get和Post請求(PHP)PHP
- PHP 傳送GET 和 POST資料的方法分析PHP
- 你真的瞭解HTTP中GET與POST的區別嗎?HTTP
- 3. Post and Get
- 99%的人都理解錯了 HTTP 中 GET 與 POST 的區別HTTP
- RestTemplate exchange GET POST請求傳引數DEMOREST
- PHP變數與常量學習PHP變數
- What is the difference Put and Post and Get?
- form&method【POST~GET】ORM
- get和post區別
- curl 簡單post get
- PHP 引用變數名與 foreach 中 $val 同名時發生的變化PHP變數
- Python探析get和post方法Python
- Post,Get介面傻傻分不清?
- GET和POST的區別?
- POST 和 GET 的區別
- GET和POST的區別
- [後臺技術]Post/Get
- jQuery – AJAX get() 和 post() 方法jQuery
- GET 和 POST 的區別
- http請求中get和post方法的區別HTTP
- jquery中$.get()提交和$.post()提交有區別嗎?jQuery
- 一文搞懂 $_POST 和 file_get_contents ("PHP://input") 的區別PHP
- post、get的區別總結
- 筆記:Curl 簡單 post + get筆記
- 2020024 - PHP 變數PHP變數
- 封裝 PHP curl http 請求 (全) Composer 安裝 httpbuilder,支援 GET,POST,PUT,DELETE封裝PHPHTTPUIdelete