If I have a form like this:
<form>
<input name="param[]" />
<input name="param[]" />
<input name="param[]" />
</form>
Can expect to receive these parameters in the same order when the form is submitted?
I've noticed that Chrome, Rails, and Webrat preserve the order of the parameters, but that may be caused by implementation details rather than adherence to a standard.