先來看一下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>結束。
action表示要將表單提交到哪個文件進行處理數據,這裡是提交到feedback.php文件進行處理表單數據。
method表示以何種方式提交表單,一般有兩種方式提交表單,post方式和get方式。get方式提交表單,數據會顯示在url鏈接上,post方式提交表單,數據是隱藏的,不會顯示在url鏈接上。
在這個實例中,有很多html input標簽,這些標簽都是表單元素。
php處理表單數據的代碼如下:
<?php $username = $_POST['username']; $useraddr = $_POST['useraddr']; $comments = $_POST['comments']; $to = "[email protected]"; $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: [email protected] \r\n"; mail( $to, $re, $msg, $headers ); ?>
因為表單是以post方式提交,所以這裡是使用$_POST來獲取表單數據的。
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!