您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“如何用PHP實(shí)現(xiàn)表單提交及處理表單數(shù)據(jù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何用PHP實(shí)現(xiàn)表單提交及處理表單數(shù)據(jù)”吧!
先來看一下html form表單的源碼:
<html> <head> <title>Feedback Form</title> </head> <body> <form action="feedback.php" method="post"> Name:<input type="text" name="username" size="30"> <br><br> Email:<input type="text" name="useraddr" size="30"> <br><br> <textarea name="comments" cols="30" rows="5"> </textarea><br> <input type="submit" value="Send Form"> </form> </body> </html>
表單是以<form>開頭,以</form>結(jié)束。
action表示要將表單提交到哪個(gè)文件進(jìn)行處理數(shù)據(jù),這里是提交到feedback.php文件進(jìn)行處理表單數(shù)據(jù)。
method表示以何種方式提交表單,一般有兩種方式提交表單,post方式和get方式。get方式提交表單,數(shù)據(jù)會(huì)顯示在url鏈接上,post方式提交表單,數(shù)據(jù)是隱藏的,不會(huì)顯示在url鏈接上。
在這個(gè)實(shí)例中,有很多html input標(biāo)簽,這些標(biāo)簽都是表單元素。
php處理表單數(shù)據(jù)的代碼如下:
<?php $username = $_POST['username']; $useraddr = $_POST['useraddr']; $comments = $_POST['comments']; $to = "php@h.com"; $re = "Website Feedback"; $msg = $comments; $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: $useraddr \r\n"; $headers .= "Cc: another@hotmail.com \r\n"; mail( $to, $re, $msg, $headers ); ?>
因?yàn)楸韱问且詐ost方式提交,所以這里是使用$_POST來獲取表單數(shù)據(jù)的。
到此,相信大家對(duì)“如何用PHP實(shí)現(xiàn)表單提交及處理表單數(shù)據(jù)”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。