天天看點

發送get請求和post請求

  在浏覽器中随便輸入一個網頁位址就預設發送了GET請求

  HTMLform中可以指定get還是post

    

<form action="1.php" method="post">
請輸入文字:<input type="text" name="word" value="" />
<input type="submit" value="送出" />
</form>