If I have a form like this:
<form>
<input name="param[]" />
<input name="param[]" />
<input name="param[]" />
</form>
Can we expect to receive these parameters in the same order when the form is submitted?
I noticed that Chrome, Rails, and Webrat maintain the order of the parameters, but this may be due to implementation details, and not compliance with the standard.
source
share