實例應用
【例】 接收表單變量
() 首先新建一個registerlhtml頁面在頁面中添加一個form表單和個輸入框分別用來輸入用戶名密碼密碼確認和郵箱還有一個【注冊】按鈕然後將表單以POST方式提交到registerphp部分代碼如下
<form action=/registerphp method=post id=apForm>
<input type=hidden name=referer value=/indexhtml />
<div class=content>
<p>
<label for=email> 您的登錄名</label>
<input class=input type=text id=
username maxLength= onBlur= checkusername()
name=username>
<span id=checkusername> </span> </p>
<p>
<label for=email> 登錄密碼</label>
<input class=input style=width:
px; onkeyup=EvalPwdStrength (thisvalue)
onBlur=checkpassword() type=password maxLength
= id=password name=userpass>
<span id=checkpassword> </span> </p>
<p>
<label for=email> 密碼確認</label>
<input class=input style=width:px;
onBlur=checkpassword() type=password maxLength=
id=password name=userpass>
<span id=checkpassword> </span> </p>
<p>
<label for=email> 電子郵箱</label>
<input id=email maxLength= onBlur=
checkemail() class=input name=email>
<span id=checkemail> </span> </p>
<p>
<input type=hidden name=
registersubmit value=true>
<input type=submit name=mysubmit
value= class=tj>
</p>
</div>
</form>
() 新建一個名為Registerphp的頁面在此頁面中我們使用PHP中的兩種頁面之間轉遞過來的變量值的方法來接收表單中的數據並進行簡單的驗證其代碼如下所示
$name=$_POST[username];
$pass=$_POST[userpass];
$pass=$_POST[userpass];
$email=$_POST[email];
echo $username;
if($name==wangyabin){
echo 該用戶名已經被注冊了;
}else{
echo 您注冊的用戶名有效;
}
返回目錄PHP Web開發學習實錄
編輯推薦
Java Web開發詳解
ASPNET MVC 框架揭秘
ASPNET開發寶典
ASP NET開發培訓視頻教程
From:http://tw.wingwit.com/Article/program/PHP/201311/21588.html