Convert a GET form to POST
cherub
SERnuke.com
in Need Help
Is there any way to easily convert a GET form to a POST form? I could use post data=, but that would mean having to extract a load of data from the page, and I was just wondering if there was a quick way, eg. modify submit type=POST
Comments
As far as I know, you can't do this. The method (GET or POST) is defined by the forms method attribute, and you have to submit forms through that specified method.