指定使用“POST”方法提交表单。
<form action="/action_page.php" @(13)>
Name: <input type="text" name="name">
<input type="submit">
</form>
<form action="/action_page.php" method="post">
Name: <input type="text" name="name">
<input type="submit">
</form>
<form action="/action_page.php" method='post'>
Name: <input type="text" name="name">
<input type="submit">
</form>