In article <[EMAIL PROTECTED]>, Awarsd wrote:
> Hi,
>
>
> to me yes it is the best way, but look again at your split code.
>
> foreach $item (@array) {
> my ($key, $title, $url, $code) = split( /\|/,$item);
> do other stuff....;
> }
or without $item...
foreach (@array) {
my ($key, $title, $url, $code) = split /\|/;
# do other stuff...
}
--
Kevin Pfeiffer
International University Bremen
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
