表單是瀏覽者留訊息給該網站的資訊內容,在網頁程式的開發過程中,表單佔了相當重要的地位。
如何正確使用表單,程式端又如何接收,就是以下要探討的內容。
php上表單傳資料與接收的方法,表單運作的原理是在頁面中新增表單區域,並在區域內放置填寫資料的表單,當按下表單的送出時,頁面會將表單區域中填寫的資料,傳送到網頁接收處理。
PHP在表單的頁面大都是使用 $_GET["欄位名稱"] 與$_POST["欄位名稱"] 接收它的值。
範例如下:
1.POST
檔名:example01.php
內容:
<form method="post" action="example02.php" id="contact_form">
<input type='text' name='user'>使用者名稱
<input type=submit value='確認送出'>
</form>
檔名:example02.php
內容:
<html>
<head>
<title>接收URL變數</title>
</head>
<body>
<?php echo $_POST['user']."<br>"; ?>
</body>
</html>
2.GET
檔名:example03.php
內容:
<form method="get" action="example04.php" id="contact_form">
<input type='text' name='user'>使用者名稱
<input type=submit value='確認送出'>
</form>
檔名:example04.php
內容:
<html>
<head>
<title>接收URL變數</title>
</head>
<body>
<?php echo $_GET['user']."<br>"; ?>
</body>
</html>
不論用哪個都是可以的,可以依您想要的形式去使用喔!
留言列表