Hello,
How should I correctly make "Param" assignments availble to function_2
and NOT to function_1 ???
#---------------------------
sub function_1 {
blah
blah
}
sub function_2 {
my @array = param('This_Param');
foreach (@array) {
my @{$_} = param($_); # ASSIGNMENT IN QUESTION
}
# HERE I NEED TO USE THE "@whatever" ARRAYS
# BUT I DONT THINK THEY EXIST OUTSIDE THE "foreach (@array)" SCOPE
}
#---------------------------
--
Brett Lee
Ned Davis Research Group
[EMAIL PROTECTED]
- Re: my && param Brett Lee
- Re: my && param Peter Haworth
- Re: my && param Brett Lee
