Skip to content

Convert a GET form to POST

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

  • AliTabAliTab GSAserlists.com
    Hi
    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.
  • Well this form in question is set up as GET but is actually submitted via ajax POST. Poor coding by the web designer and annoying for me to script in SER ;)
    Thanked by 1AliTab
  • SvenSven www.GSA-Online.de
    modify submit method=GET
    Thanked by 2cherub AliTab
  • Great and simple, thanks! (needs to be added to the script manual too)
  • SvenSven www.GSA-Online.de
    updated
Sign In or Register to comment.