You may have some validation problems depending on what order PHP decides to loop through the associative:
$newArray = array();
foreach($myArray as $key => $value)
$newArray[] = $value;
In theory, that's all you'd need. But the problem is the indexed order may change on you. So, the safest way would be to keep track of the import information by hardcoding it to a particular index location (such as the ID value). You'll probably want to experiment with this to ensure its going to work the way you'd expect it to.