您好,登錄后才能下訂單哦!
本篇文章為大家展示了利用PHP怎么對表單的數(shù)據(jù)進(jìn)行獲取,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
常用的自動全局變量如下所示:
1、GET方式
功能:獲取get方式提交的數(shù)據(jù)
格式:$_GET[“formelement”]
2、POST方式
功能:獲取post方式提交的數(shù)據(jù)
格式:$_POST[“formelement”]
3、REQUEST方式
功能:獲取任意方式提交的數(shù)據(jù),$_REQUEST自動全局變量包含了所有GET、POST、COOKIE和FILE的數(shù)據(jù),如不關(guān)心數(shù)據(jù)來源。
格式:$_REQUEST[“formelement”]
復(fù)選框 、列表框(名稱采用數(shù)組形式如:"select[]",在獲取其值的時候直接使用$_POST["select"]即可)
<!doctype html> <html> <head> <meta charset="utf-8"> <title>無標(biāo)題文檔</title> </head> <body> <!--獲取表單數(shù)據(jù)的兩種方法--> <!--post--> <form method="post" action="8.3.php" name="form1"> <table border="1" width="400" cellpadding="0" cellspacing="0"> <tr> <td height="30"> 用戶名:<input name="txtName" type="text" size="12"> 密碼:<input name="txtPsd" type="password" size="12"> <input type="submit" name="SubmitBtn" value="提交"> </td> </tr> </table> </form><br/> <!--get URL的長度需要限定在1M范圍內(nèi),否則會截取--> <!--可以使用urlencode與urldecode對URL進(jìn)行編解碼--> <form method="get" action="8.3.php" name="form2"> <table border="1" width="400" cellpadding="0" cellspacing="0"> <tr> <td width="400" height="30"> 訂單號:<input name="txtFrame" type="text" size="12"> <input type="submit" name="SubmitBtn"> </td> </tr> </table> </form> <!--在Web頁面中嵌入PHP腳本--> <?php $strTxt = '男'; ?> <input type="text" value="<?php echo "strTxt"; ?>"> </body> <?php echo '用戶名: '.$_POST["txtName"]." 密碼:".$_POST['txtPsd']; echo '訂單號:'.$_GET["txtFrame"]; ?> </html>
上述內(nèi)容就是利用PHP怎么對表單的數(shù)據(jù)進(jìn)行獲取,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。