Say I have an array like this :
$array = array (0 => "one", 2 => "red", 3 => "four");
Now I want to insert a value "three" on key '3' shifting the rest of the value's (in this case "four") up one key so I'de get :
$array = array (0 => "one", 2 => "red", 3 => "three", 4 => "four");
Is there a function for this? Or else how do I do this?
Thanx,
Niels