表單標籤以<form></form>
包圍,action後放置目標文件介面。<form method="傳送方式" action="傳送目的地">
type:欄位種類
<input type="text">
:文字輸入欄位。<input type="password">
:密碼輸入欄位。<input type="radio">
:單選。<input type="checkbox">
:多選。<select><option> </option></select>
:下拉選單。<textarea ></textarea>
:填寫內容,可書寫內容較多。在欄位上會給予id、value、name辨別,id是唯一的,不得重複,value是用於讓寫程式的人易懂欄位的意義,而name屬性,主要是給html表單辨別。
會將資料附在網址後方傳送,較不安全。使用$GET取欄為值。
<body>
<form method="get" action="index.php">
<p>姓名:
<input type="text" name="name" >
<input type="submit" name="send" value="送出">
</form>
<?php
$result=$_GET[name];
echo $result;
?>
輸出:
還可發現網址的改變。