http://qs1969.pair.com?node_id=847344


in reply to array question

You mean you want to discard the first array element? In which case one way to do it is:
for ($i = 1; $i < 10; $i++) { print $array[$i]; }
Starting at 1 because first element's index is 0.