I was just wondering if the order of items in a GET or POST dictionary ever changes?
if you have a list of 3 people, and you say :
template:
for x in listof3people:
<input type="hidden" name="x.name">
<input type="number" name="birthday">
in views when you do a getlist(name), the order of the information never changes correct?
so if the query pulled up mark , mindy, and sam in that order, the get list would show always show:
mark and his birthday , mindy and her birthday, and sam and his birthday in that order. The reason I'm askiong is because I'm going to have to link information based on position, so find the position of "bar" and pull the data in the nest list that is in the same position.