Ok you've got a 2d array like this
$array[1][4] = value1
$array[1][5] = value12
$array[2][1] = value3
$array[4][2] = value4
..
I want to flip the indices like this:
$array[4][1] = value1
$array[5][1] = value12
$array[1][2] = value3
$array[2][4] = value4
How would I do this?
Thanks,
Sam fullman