好滴,先從乙個簡單的html表單做起吧,少年們!
php 超全域性變數 $_get 和 $_post 用於收集表單資料(form-data)。
//this is a ****** demo for php
當使用者填寫資料,表單並提交之後,資料將會post之welcome.php 的php檔案處理,表單資料時通過http post的方式傳送的。
現在看下welcome.php的功能實現。
welcome <?php echo $_post["name"] ?>
your email address is : <?php echo $_post["email"]; ?>
tips:
$_get 是通過url 引數傳遞到當前指令碼的變數陣列,
$_post 是通過 http post 傳遞當前指令碼的變數陣列。
何時使用get方法
get方法獲取的表單資料都是可見的,而且get對傳送的訊息的數量也有限制,2000個字元。由於變數顯示在url中,
注釋:絕對不用使用get方法來傳送密碼或者其他敏感資料
何時使用post方法:
通過post方法從表單傳送資料對其他人是不可見的額,(所有名稱,值會嵌入http請求的主體中),而且對於傳送的訊息數量也沒有限制,
表單資料驗證:
簡單資料處理
資料去重 uniq 2,1,2 2,1 刪除陣列的指定項 pull 1,2,3 2 1,3 陣列過濾.uniqby this.nodes,x x.belong 陣列每一項新增checked true array.map x 物件合併 例項 uniqby this.nodes,x x.belong 過...
電子表單系列談之表單資料處理
一般的電子表單工具都要求能自動顯示和儲存關係型資料庫中的資料,比如可以使用sql語句查詢資料填充文字框,或者查詢一批資料填充到列表框中的列表專案。而且還要求能更新資料庫,能把使用者輸入的資料儲存到資料庫中,可以新增,修改和刪除資料庫記錄。為實現這種功能,表單工具在定製表單模板的時候得設定讀取資料和更...
php獲取表單資料
1.html 2.php test.php username post username password post password if username wang password 123456 else 3.php 第二種寫法 test.php require once dbtest.php...