1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 講解如何讓php提交form表單

        時間:2020-11-25 08:56:49 PHP 我要投稿

        講解如何讓php提交form表單

          處理GET請求

          實現(xiàn)的.功能是輸入姓名后頁面顯示“Hello XXX”

          創(chuàng)建html文件hello.html:

          * 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請求把表單的數(shù)據(jù)顯式地放在URI中,并且對長度和數(shù)據(jù)值編碼有所限制,如:http://127.0.0.1/hello.php?name=Vito

          處理POST請求

          實現(xiàn)一個簡單的加法運算功能

          創(chuàng)建html文件add.html:

          /**

          * 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請求把表單的數(shù)據(jù)顯式地放在URI中,并且對長度和數(shù)據(jù)值編碼有所限制,如:http://127.0.0.1/hello.php?name=Vito

          處理POST請求

          實現(xiàn)一個簡單的加法運算功能

          創(chuàng)建html文件add.html:

          /**

          * 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請求把表單數(shù)據(jù)放在http請求體中,并且沒有長度限制

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

        【講解如何讓php提交form表單】相關文章:

        1.php避免form表單重復提交

        2.淺談Ajax提交與傳統(tǒng)表單提交的區(qū)別說明

        3.JAVA基礎知識:form的提交方式

        4.jquery submit()不能提交表單的的原因

        5.asp教程中get post提交表單區(qū)別

        6.有關語法和表單的PHP教程

        7.JAVA基礎知識:簡單介紹form的提交方式

        8.PHP網(wǎng)絡操作函數(shù)講解

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>