I've read the online manual, but got confused. My book doesn't help either.
I need to print out the elements in an array from $array1[3] to the last element in the array. The arrays length will vary from time to time so I either need to combine the count() function with one of the loops {for(), while() or do..while()} OR I need to adapt the foreach() function so that it starts at $array1[3] and then continues on it's merry way.
At the moment I have written out 100 different Print() statements which I know is crazy but I haven't learned anything better yet.
It sounds like the answer should be simple, but then so am I and I need some help... any ideas?
TIA
Mac