Raptor <[EMAIL PROTECTED]> wrote:
> I mean something like this :

> instead of :
> #$Request->{Params}
> local *myhash = \%{$$Request{Params}};

> my %myhash alias %{$$Request{Params}};#see - it is my (now as far as I know
> u can't have it 'my')

You don't need a typeglob there; you can do the following, which does work
with 'my':

my %myhash = %{$Request->{Params}};

or 

my $hashref = $Request->{Params}; # neater, and I personally prefer
                                                                  # working with 
hashrefs

Less typing, and it's already in there. :)

Take care,
Mark.

Reply via email to