Hi!!
Is it possible to add elements in an array changing also the key numbers?
For example, my array is:
$array=array(0 => apple, 1 => banana, 2 => orange);
I want
$array=array(0 => apple, 1 => lemon, 2 => banana, 3 => orange);
How can I add the element in that position without overwriting the previous?
Thanks
GG