I'm wanting to append a value to an array of the format
8 => "Some place",
9 => "Someother place"
However using array_unshift($array, "") or array_merge(), PHP very nicely shuffles all my values so that the array becomes
0 => "",
1 => "Some place",
2 => "Someother place"
Which is exactly what I dont want, since the index of the array corresponds to an ID in a database. The code is designed to be shoved into a HTML SELECT, and I really do need to have a blank value with index 0 at the top of the list.