<form method=post action=要執行的檔案 >
</form>

<form method=get action=某某.html >
</form>

<form method=post action=某某.php >
</form>

get 與 post 傳遞參數的方式不同

method=get
get 是利用 url 來傳參數,
所以設 get, 相當於會轉成 http://xxxxxx?parm1=xxxxx
這種方式的缺點是比較不安全, 且有總長度 255 的限制, 無法傳太多參數.
method=post
post 是用編碼過的資料來傳參數, 比較安全, 也沒有長度限制。