the structure is something like this : $Request = { Params => { abc => 1, ddd => 2 } } the idea is that U don't dereference i.e. : my $myhash = ($Request->{Params}); if u want to use it U have to do this : print $$myhash{abc}; #or if u preffer print $myhash->{abc} in the case of : >local *myhash = \%{$Request->{Params}}; u do this : print $myhash{abc}; so it is first clearer and second I hope much faster .... ===== iVAN [EMAIL PROTECTED] =====
- nice2haveit raptor
- Re: nice2haveit Damian Conway
- Re: nice2haveit raptor
- RE: nice2haveit Sterin, Ilya
- Re: nice2haveit raptor
- Re: nice2haveit Dan Sugalski
- RE: nice2haveit Sterin, Ilya
- Re: nice2haveit raptor
- Re: nice2haveit Bart Lateur
- Re: nice2haveit Uri Guttman
- Re: nice2haveit John Porter
- Re: nice2haveit Dan Sugalski
- Re: nice2haveit Paul Johnson
- Re: nice2haveit Brent Royal-Gordon
- Re: nice2haveit Mark Morgan