Hi guys:
I have a two dimensional array called $array, and I want to delete the fourth element in every second dimension. For instance, I want to delete all these records:
$array[0][4];
$array[1][4];
$array[2][4];
$array[3][4];
In other words, I'd like to delete every element where the second dimension = 4. And also, is it possible to have the 5th element in the array become the NEW 4th element.......after the deletion I mean...
Basically, I want to be able to delete certain columns and have all remaining columns move forward by one index.
All help will be appreciated...
Thanks..
Trevor..