Forum Moderators: phranque
<form action="http://example.com/quiz/vote.cgi" method=post>
<input type=hidden name="id" value="2006-01">
<input type=submit name="vote" value="Yes">
<input type=submit name="vote" value="No">
</form>
This code works fine on a web page, and in a message read with SquirrelMail (a webmail client). But when I read it with Apple mail 1.311 and click either "Yes" or "No" my Perl script returns no value for param(id) and param(vote).
If I use GET instead of POST then it works, but that makes the URL ugly.
Is there some hack that will get this to work?
But it looks like I don't have a good alternative if I want compatability with Apple Mail, so I guess I'm using GET...