I have an array like this:
[0] => Array
(
[slideritem] => 592
[sliderbig] => 644
)
[1] => Array
(
[slideritem] => 593
[sliderbig] => 645
)
[2] => Array
(
[slideritem] => 594
[sliderbig] => 646
)
slideritem is the id of an image that will be displayed and the slidebig is the image that will be linked to be displayed on a lightbox.
In other words i want the markup to be:
<a href="[sliderbig]"><img src="[slideritem]" /></a>
I pretty sure it's a simple foreach statement but i'm already on my 12th hour straight in front of the screen :)