Forum Moderators: open
<input type="submit" name="button1" value="dothis">
<input type="submit" name="button2" value="dothat">
I'm not sure but you might be able to get by with the same name= . I haven't tried it though.
Reading through the W3c specs, I think you can do it:
<input type="submit" name="dowhat" value="dothis">
<input type="submit" name="dowhat" value="dothat">
Your query will be generated:
?selectname=selectvalue&dowhat=dothis (or dothat)