When I do http POST request via Web form, Is there any difference(practically or theoretically) between parameters specified in the URL and parameters passed with form on the server side?
Can I do whole POST with url parameters and expect same result as with form inputs?
Like:
<form action="/?id=2" method="post"> <input type="text" name="name" value="John"/> <input type="submit" value="submit"/> </form> Or:
<form action="/?id=2&name=John" method="post"> <input type="submit" value="submit"/> </form> Thanks.