I have a page that gives the user some options, e.g. add, edit, delete a person from a database. Right now I am using links to take them to the next correct page to do this, depending upon which link the click.
I'd like to replace those links with submit buttons, but you only get one choice as to the next page via the ACTION attribute, e.g.
[form method=post action="http://www.next_page"]
How can I build an intermediate page that captures which submit button was pressed and then redirects the user accordingly?