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]; }
[download]
Starting at 1 because first element's index is 0.
Comment on
Re: array question
Download
Code
In Section
Seekers of Perl Wisdom