google.html界面如圖
代碼如圖:(比較簡單,就是一個input輸入框和input提交按鈕,注意type為submit,而不是button)
復制代碼代碼如下:
<html>
<head>
<title>Winbobo</title>
</head>
<body>
<div align="center">
<form action="google.php" method="get">
<input name="q" type="text"/>
</br>
<input name="btnSearch" type="submit" value="Search" />
</form>
</div>
</body>
</html>
google.php的代碼如圖:($_GET用於獲取表單通過get方式傳遞的數據; $_POST用於獲取表單通過post方式傳遞的數據)
復制代碼代碼如下:
<?php
print "<pre>";
print_r($_GET);
print "</pre>";
?>
運行結果如圖: