A form mostly uses the POST method when submitting. But there is another form method that’s rarely used: GET . When submitting a form using this method, a query string is added at the end of the URL you submit to that includes the form’s data. Probably its most common use case is for a search results page where results are shown based on a query string variable. Using GET works as a way to pass data from page to page, without requiring any kind of backend to do the storing and passing, or Javasc

Multi-step form without the overhead
Ovi Demetrian Jr
