程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 淺談php提交form表單

淺談php提交form表單

編輯:關於PHP編程

       這篇文章主要介紹了淺談php提交form表單的2種方法和簡單的示例,十分的實用,有需要的小伙伴可以參考下。

      處理GET請求

      實現的功能是輸入姓名後頁面顯示“Hello XXX”

      創建html文件hello.html:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>歡迎</title> </head> <body> <form action="hello.php" method="get"> <input name="name" type="text"/> <input type="submit"/> </form> </body> </html>

      創建PHP文件hello.php:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 <?php /** * Created by PhpStorm. * User: Administrator * Date: 2015/6/30 * Time: 15:03 */ header("Content-type: text/html; charset=utf-8"); if(isset($_GET['name'])&&$_GET['name']){//如果有值且不為空 echo 'Hello '.$_GET['name']; }else{ echo 'Please input name'; }

      Get請求把表單的數據顯式地放在URI中,並且對長度和數據值編碼有所限制,如:http://127.0.0.1/hello.php?name=Vito

      處理POST請求

      實現一個簡單的加法運算功能

      創建html文件add.html:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>相加</title> </head> <body> <form action="add.php" method="post"> <input name="num1" type="text"/> + <input name="num2" type="text"/> <input type="submit" value="相加"/> </form> </body> </html>

      創建PHP文件add.php:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php /** * Created by PhpStorm. * User: Administrator * Date: 2015/6/30 * Time: 18:02 */     if($_POST['num1']&&$_POST['num2']){ echo $_POST['num1']+$_POST['num2']; }else{ echo 'Please input num'; }

      Post請求把表單數據放在http請求體中,並且沒有長度限制

      form action=""意思是:form是表單,action是轉向地址,即form表單需要提交到哪裡

      以上所述就是本文的全部內容了,希望大家能夠喜歡。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved