Here is what I want to do. I have an image gallery. I want to be able to click on the image, that triggers a new large window to pop-up with a high-res version of the previous image. (getting the pop-up is not a problem) I figure that in order to do this, I have to send the value of array_index to the new window. If the images are in the same order it should be the right image.
It’s not the array that I want to send. The arrays are effectively identical except for the image path. (one is low-res images, the other is high-res images) I just want to send the index value for the array to the new window (containing the high-res gallery). For instance if you were looking at the 3rd image in the low-res gallery, the value for the index would be 2. I want to then send that value to the new window so that the starting image in the high-res gallery would be the 3rd image (the one you were viewing in the low-res gallery).