in my code this will echo a value out of my hash returned by the $cgiParams object.
$myhash = $cgiParams->getParams();
echo $myhash['PHP_SELF'];
Is there anyway I can pull out the value from the hash with out first setting the $myhash variable?
Something like this:
echo $cgiParams->getParams->PHP_SELF;
Thanks!