Hi,
I am using an array with 10 elements in it. I want to be able to loop through the array a number of times, but am unsure if you can start looping trough an array at a given element.
At the moment I use:
foreach($filelist as $row);{
echo "$row\n";
}
and this lists all 10 elements in the array.
I have worked out how to stop the loop when I fine the element I want.
So my question is, can you iterate through the array, but start at element 5, instead of 0?
Cheers