Derek,
Not per say, but what you can do is submit the form to an intermediary page which then directs to the page appropriate to the clicked button.
<?php
if ($button1) {
header ("Location: page1.php");
exit();
}
esle if ($button2) {
header ("Location: page1.php");
exit();
}
etc.....
?>
This will work alright if you create a session above the selection statement that contains all the form values, otherwise you'd need to pass those values through the url stream in GET fashion which quickly becomes limited and messy. HTH.
Cheers,
Geoff A. Virgo