formmethod属性を設定すると、ボタンごとにpost送信とget送信を分けることができます。

(例)

<form action="index.html" method="post">
    <button type="submit" formmethod="post">post送信</button>
    <button type="submit" formmethod="get">get送信</button>
</form>