Does an html form like this submit results in an order like below? from top of form to bottom of form.
<form method="GET">
<input type="text" name="fname">
<input type="text" name="mname">
<input type="text" name="lname">
</form>
{
fname => "",
mname => "",
lname => ""
}
EDIT: Considering what Quentin said, does phoenix persist the order of HTML forms when submitting to the server?