Hey,
$tArray = array(3, 4, 2, 10, 209, 54);
That is the array I am working with (just for this example).
Now, I would like to move the value 209 to just before the value 4.
How do I MOVE the entry? So the array looks like this,
$tArray = array(3, 209, 4, 10, 54);
I may be totally complicating the issue, but I just seem to be having a brain fart.
Any help would be much appreciated 😉