let's say I have an array( 1=>something, 2=>else, 3=>entirely)
I want to use the foreach element in the array, return the other elements in the array..
so 1 will return 2 and 3, 2 will return 1 and 3, and 3 will return 1 and 2... this array may contain two to dozens of elements at a given time
how do i do this?