ooops I forgot if the vars in for are aliesed then it will be ok for using
it like 'with' :

for my $el ( $Request->{Param} ) {
  print $el{qsParam1}
  print $el{qsParam2}
....
}

but then what will be $_ ... alias OR copy !?! :") I mean mostly backward
compatibility...
One other way is 'local' to make copy & 'my' alias in this particular case
?!?!?! I can't remember the current-descision about 'local'
Say :
for my $el , local $el2 (@a1, @a2) {
   print $_; #alias
   print local $_;#copy
};


Dusk till down :")
=====
iVAN
[EMAIL PROTECTED]
=====

Reply via email to