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]
=====

Reply via email to