Гарантирован ли порядок ВХОДОВ в POST для входных данных массива в PHP?

I have a form where users enter an unbounded number of rows of data. They arrive at the form by entering whatever number of rows on the screen that they desire.

<?php
$numRows = $_GET['NUM_ROWS_REQUESTED'];

?>
<form method="post">
<?php
for($i = 0; $i < $numRows ;$i++) {
  $uuid = uniqid();
?>

  <input type="text" name="MYDATA[<?php print $uuid; ?>][FIRST_NAME]" />
  <input type="text" name="MYDATA[<?php print $uuid; ?>][LAST_NAME]" />
<?php
}
?>
</form>

I'm wondering if, when the form is posted and I receive these records in the $_POST['MYDATA'] array if I can be guaranteed that they will be ordered in the same sequence as they were posted on the screen. Or will they be ordered by the uniqid() that's randomly generated?

The reason I use a unique ID instead of just integers which would be easier to sequence, is that users can remove rows and add additional rows using javascript on that page. It would be too difficult to check for collisions.

19
задан aw crud 9 December 2010 в 16:45
поделиться