Is there any difference between parameters in a URL and <form method="get"> ? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T10:49:57Zhttp://stackoverflow.com/feeds/question/265923http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget4Is there any difference between parameters in a URL and <form method="get"> ?Leonelhttp://stackoverflow.com/users/156492008-11-05T17:20:13Z2008-11-05T17:56:04Z
<p>The question title says it all.</p>
<p>Now, I know a difference between parameters in a URL and a POST parameter: some browsers may misbehave if the URL is too long, so it is not a good idea to stuff hundreds of parameters in a URL, even if your app can respond to a GET request.</p>
<p>For the sake of discussion, let's suppose the following web application: a user can input a series of (possibly hundreds of) X,Y coordinates. The server plots them in a chart, which is returned as an image.</p>
<p>This is clearly an example of an <a href="http://en.wikipedia.org/wiki/Idempotent" rel="nofollow">idempotent operation</a>, so, according to the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html" rel="nofollow">HTTP spec</a>, it is recommended to be implemented as a GET operation. However, you can't build a URL with all the parameters, as it will be too long. Can a <form method="get"> handle that much parameters ?</p>
<p>I've also heard that <form method="get"> is completely equivalent to placing parameters in a URL ? Now, is that true for some browsers or for the whole HTTP protocol ? Is there a maximum length to a request ?</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265939#2659392Answer by Kibbee for Is there any difference between parameters in a URL and <form method="get"> ?Kibbeehttp://stackoverflow.com/users/18622008-11-05T17:23:30Z2008-11-05T17:23:30Z<p>What your browser actually does is build a really long url from the form inputs. Therefore there will be no difference between a URL and form Method="GET". Either one will result in the same URL being loaded.</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265945#2659457Answer by Sunny for Is there any difference between parameters in a URL and <form method="get"> ?Sunnyhttp://stackoverflow.com/users/82202008-11-05T17:26:01Z2008-11-05T17:39:37Z<p>The HTTP spec does not set limitations, but the browsers and servers do. See <a href="http://www.boutell.com/newfaq/misc/urllength.html" rel="nofollow">here</a> for specifics.</p>
<p>The browser will create a long URL if the method is set to GET for a form, so the above limitations apply.</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265951#2659511Answer by Pat for Is there any difference between parameters in a URL and <form method="get"> ?Pathttp://stackoverflow.com/users/2382008-11-05T17:27:50Z2008-11-05T17:37:53Z<blockquote>
<p>I've also heard that <form method="get"> is completely equivalent to placing parameters in a URL ? </p>
</blockquote>
<p>That's true, here is the corresponding <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3" rel="nofollow">RFC section</a></p>
<blockquote>
<p>Is there a maximum length to a request ?</p>
</blockquote>
<p>The <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.2" rel="nofollow">spec</a> says "The HTTP protocol does not place any a priori limit on the length of a URI."</p>
<p>However internet explorer 6 has a limit of 2,083 characters.
Other browsers allow more characters but if you go that route you will basically have to design for ie6</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265952#2659521Answer by vIceBerg for Is there any difference between parameters in a URL and <form method="get"> ?vIceBerghttp://stackoverflow.com/users/177662008-11-05T17:27:52Z2008-11-05T17:27:52Z<p>form method=get WILL put all the form's input into the URL.</p>
<p>It's true that browsers have a maximum length for the URL. It changes from browsers to browsers, and surely from Browsers version to browsers version.</p>
<p>If you can, I would recommend you to use POST for your form.</p>
<p>HTH</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265954#2659541Answer by Bill James for Is there any difference between parameters in a URL and <form method="get"> ?Bill Jameshttp://stackoverflow.com/users/138242008-11-05T17:28:32Z2008-11-05T17:28:32Z<p>GET and url ?name=value&... are the same thing, as the browser merely converts a GET form to a URL before sending the request.</p>
<p>The maximum length of the URL is determined at the browser and server level so, for a given browser/server, it's the smaller of the two.</p>
<p><a href="http://www.boutell.com/newfaq/misc/urllength.html" rel="nofollow">This post</a> has a good list of current max lengths for URLS</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265985#2659850Answer by glenatron for Is there any difference between parameters in a URL and <form method="get"> ?glenatronhttp://stackoverflow.com/users/153942008-11-05T17:37:10Z2008-11-05T17:37:10Z<p>This isn't an answer to your question about get and post but in a situation like you are describing it is quite often easier to store the more complex data on the server and associate it with a session id or a user account rather than putting it into the URL every time. Then you can use just the identifier for that session in a cookie or as a url parameter to retrieve the image.</p>
<p>That can also help you to cache the requested images so you don't have to go through the work of regenerating them every time a user wants to look at a particular chart again.</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/265990#2659901Answer by erickson for Is there any difference between parameters in a URL and <form method="get"> ?ericksonhttp://stackoverflow.com/users/34742008-11-05T17:38:11Z2008-11-05T17:43:44Z<p>No, a server cannot see a difference between putting parameters in a URL and using a FORM with a GET method. So, if a given URL with parameters would be too long, using a FORM with a GET method won't help.</p>
<p>POST or GET should be chosen mainly for their semantics. GET is for "safe" actions. That is, users should not be held accountable for an operation performed by a GET request. The POST method is used for operations for which the user is to be held responsible.</p>
<p>It's very frustrating, for example, when a search feature uses POST. A user doesn't expect a simple query to alter any important system state—they expect searching to be a "safe" operation.</p>
<p>On the other hand, many vulnerabilities exist because unsafe operations are accessible through GET requests, as well as POST. This contributes to vulnerabilities like XSRF where an attacker simply needs to get a malicious "src" URL into an IMG tag on a legitimate site.</p>
<p>For your use case, Ajax may actually be an appropriate solution. You could make a GET request for each point selected, storing them in a session at the server. When the user is finished entering points, a final GET request retrieves the finished product.</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget/266012#2660122Answer by mkoeller for Is there any difference between parameters in a URL and <form method="get"> ?mkoellerhttp://stackoverflow.com/users/334332008-11-05T17:44:54Z2008-11-05T17:56:04Z<p>The <a href="http://www.greenbytes.de/tech/webdav/rfc2616.html" rel="nofollow">HTTP specification</a> does not explcitely require to place parameters of a GET request into the URI. It would be legal to send a message-body in a GET request like forms using POST do.</p>
<p>However, browsers implement GET forms this way for a very good reason: Caching.
GET requests are expected to be processed on the server without side-effects. So responses to GET requests might be cached. This perfomance improvement option is instantly lost if you would start using message-bodies on GET requests.</p>
<p>If you plan to design a chart API, you may want to have a look at <a href="http://code.google.com/apis/chart/" rel="nofollow">Google</a>. They already offer a very good one to the public. Even if it's only for learning how to pack as many information into URI params as possible, it's worth a look.</p>
<p><img src="http://chart.apis.google.com/chart?cht=lc&chs=200x100&chd=s:formostthisamazingdayfortheleapinggreenlformostthisamazingdayfortheleapinggreenl&chxt=x,y&chxl=0:|Apr|May|June|1:||50+Kb" alt="alt text" /> <img src="http://chart.apis.google.com/chart?cht=lxy&chs=200x125&chd=t:0,30,60,70,90,95,100|20,30,40,50,60,70,80|10,30,40,45,52|100,90,40,20,10|-1|5,33,50,55,7&chco=3072F3,ff0000,00aaaa&chls=2,4,1&chm=s,FF0000,0,-1,5|s,0000ff,1,-1,5|s,00aa00,2,-1,5" alt="alt text" /> <img src="http://chart.apis.google.com/chart?cht=p3&chd=s:Uf9a&chs=250x100&chl=January|February|March|April" alt="alt text" /> <img src="http://chart.apis.google.com/chart?cht=r&chs=200x200&chd=s:voJATd9v,MW9BA9&chco=FF0000,FF9900&chls=2.0,4.0,0.0|2.0,4.0,0.0&chxt=x&chxl=0:|0|45|90|135|180|225|270|315&chxr=0,0.0,360.0&chg=25.0,25.0,4.0,4.0&chm=B,FF000080,0,1.0,5.0|B,FF990080,1,1.0,5.0|h,0000FF,0,1.0,4.0|h,3366CC80,0,0.5,5.0|V,00FF0080,0,1.0,5.0|V,008000,0,5.5,5.0|v,00A000,0,6.5,4" alt="alt text" /></p>