Hello together,
I try to write some arrays into arrays using references. 

my ($a, $b, $c, @mytemp, $myref, @my_globael_array)

while(<$myfile>)
{
   ($a, $b $c ) = getparameter();
   @mytemp = ($a, $b, $c);
   $myref = \...@mytemp;
   push(@my_global_array, $myref);
}

But if I dismantle @my_global_array I get only the last entry, the last array. 

Where is the problem?

Thank you all

Christian

-- 
GRATIS! Movie-FLAT mit über 300 Videos. 
Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to