I have one form in a PHP (5.2.9-1) application that causes IIS (Microsoft-IIS/6.0) to throw the following error when POSTed:
The page you are looking
I don't know why but its happened when you submit a form inside a page to itself by the POST method.
POST
So change the method="post" to method="get" or remove action="anyThings.any" from your tag.
method="post"
method="get"
action="anyThings.any"