http://www.perlmonks.org?node_id=122219


in reply to Re: A little help please
in thread What is a multidimensional array and how do I use one

What was the intent of the following?
foreach $replica (@scr || @erlh) {

Did you perhaps want:
foreach $replica (@scr, @erlh) {

thus, stepping through each array?


HTH,
Charles K. Clarkson

Replies are listed 'Best First'.
Re: Re: Re: A little help please
by Anonymous Monk on Oct 31, 2001 at 05:40 UTC
    yes I think that's it, thank you and to all who posted, I think tha ti have finally figured this out, you guys all rock!!!!