HTTP GET: Same GET-Parameter multiple Times, is this allowed by RFCs?
Posted
by bernhard
on Stack Overflow
See other posts from Stack Overflow
or by bernhard
Published on 2010-06-08T19:14:04Z
Indexed on
2010/06/08
22:22 UTC
Read the original article
Hit count: 322
http
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
© Stack Overflow or respective owner