一、php和表單
1.POST方法手動發送數據:
二者部分區別:
GET:
1.將信息聚集起來作為URL一部分傳送
2.傳送數量有限
3.公開傳送,諸如密碼信息會暴露
4.創建的表單可以添加為書簽。
POST:
1.傳遞的信息用戶看不到
用法示例:
html文件:ws.html
test
test
$title=$_POST['title']; $name =$_POST['name']; print "輸入:mynamehello $title $name"; ?>
結果:hello Mr myname
2.GET傳送數據
test
test
$name=$_GET['name']; print "hello $name"; ?>
二、相關函數學習
1.格式化數值:
round(要格式化的數字 , 保留小數點位數);
eg:$test=5.555555555; round(test, 2); // 5.55
number_format(數字, 小數點位數, 代替小數點的符號, 千位分隔符)
eg:number_format("10000000", 2 ,"," ,".");// 10.000.000,00
2.隨機函數rand()
eg:rand(0, 100);//產生0-100 隨機一個數