Hi Derek,
no problem. you can use different forms. For example:
<form action="page1.php" method="post">
<input type="submit" value="action1">
</form>
<form action="page2.php" method="post">
<input type="submit" value="action2">
</form>
<form action="page3.php" method="post">
<input type="submit" value="action3">
</form>
Now you have three different buttons on your page, with three different actions.
I hope I got your question and the answer helps you,
Andreas