is there a way to RE KEY an array?
I have two arrays that I need to run through a for loop simultaneously
The problem I'm having is the first array is like this:
array(
2=>value
3=>value
4=>value
and the second array is like this:
array(
0=>value
1=>value
ect..
I need to be able to RE-KEY the first array to match the second so it will run through the loop correctly..
any ideas??
thanks
eff