HTTP GET: Same GET-Parameter multiple Times, is this allowed by RFCs?
- by bernhard
Hello,
are all "Standard Compliant (HTTP RFC?)" Web-Servers forced to "somehow" provide some methods to get all Parameters with the same name as some kind of list/array? Or will will using the same parameter name lead to overwriting:
Example:
http://www.stackoverflow?myparam=value1&myparam=value2
Will this lead to myparam holding the values "value1,value2" or only "value2" (due to overwriting and only using the last one). Is this behaviour mandated by some standard?
thanks
bernhard