I would like to create a loop where it will count down and shift every thing to the right by one postion in the array. for example: array('1a','1b','1c','','','1f')
should look like this
array('1a','','','1b','1c','1f')
Starting from position 5 and counting down.$i--