php教程中$_get要獲取表單的數據那必須把METHOD=GET才行,否則就無法正常獲取值哦,
$_GET 變量是一個數組,內容是由 HTTP GET 方法發送的變量名稱和值。
$_GET 變量用於收集來自 method="get" 的表單中的值。從帶有 GET 方法的表單發送的信息,對任何人都是可見的(會顯示在浏覽器的地址欄),並且對發送的信息量也有限制(最多 100 個字符)。
看個獲取表單數據的實例
<INPUT TYPE="image" NAME="submit_one" SRC="b.gif">
<INPUT TYPE="image" NAME="submit_two" SRC="b2.gif">
//Properly determining which submission button was clicked in PHP:<?php
if(isset($_GET['submit_one_x'])) {} elseif(isset($_GET['submit_two_x'])) {
} else {}
?>
實例二
<?
<FORM ACTION="index.php" METHOD=GET>
<INPUT TYPE="hidden" NAME="time" VALUE="<?php echo time(); ?>">
Enter your message (5 minute time limit):<INPUT TYPE="text" NAME="mytext" VALUE="">
<INPUT TYPE="submit" Value="Send Data">
</FORM>if($_GET['time']+300 >= time()) {
echo "You took too long!<BR>";
exit;
}
?>
操作select值
<SELECT NAME="myselect[]" MULTIPLE SIZE=3>
<OPTION VALUE="value1">A</OPTION>
<OPTION VALUE="value2">B</OPTION>
<OPTION VALUE="value3">C</OPTION>
<OPTION VALUE="value4">D</OPTION>
</SELECT>
//The PHP code to access which value(s) were selected:<?php
foreach($_GET['myselect'] as $val) {
echo "You selected: $val<BR>";
}
echo "You selected ".count($_GET['myselect'])." Values.";
?>
獲取表單提交的數據再輸出,這也是個完整的實例
<html>
<head>
<title>A Simple HTML Form</title>
</head>
<body>
<div>
<form action="index.php" method="get">
<p><input type="text" name="user" /></p>
<p><textarea name="address" rows="5" cols="40">
</textarea></p>
<p><input type="submit" value="hit it!" /></p>
</form>
</div>
</body>
</html>
// index.php
<html>
<body>
<div>
<?php
print "Welcome <b>" . $_GET ['user'] . "</b><br/>nn";
print "Your address is: <br/><b>" . $_GET ['address'] . "</b>";
?>
</div>
</body>
</html>
注釋:在使用 $_GET 變量時,所有的變量名和值都會顯示在 URL 中。所以在發送密碼或其他敏感信息時,不應該使用這個方法。不過,正因為變量顯示在 URL 中,因此可以在收藏夾中收藏該頁面。在某些情況下,這是很有用的。
注釋:HTTP GET 方法不適合大型的變量值;值是不能超過 100 個字符的