http://www.example.com?a=1&a=2
has a valid form-urlencoded querystring and has two values (1
and 2
) for the key a
.
- Is there any spec or standard for URL consumers guaranteeing ordering (or lack thereof) of parsed values?
- Do common implementations (Django's QueryDict, dojo's queryToObject, PHP, etc) preserve ordering?