http://qs321.pair.com?node_id=25577


in reply to My parameters can't escape from the Sun...

Maybe you are trying to interpolate method calls in strings? Unfortunatly, function- and method calls will not interpolate in strings. So you might try something like this instead: print "Got: ", $cgi->escape("some_value"), "\n"; Well, you can do something like the following, but I don't think it's pretty: print qq(Got: @{[ $cgi->escape("some_value") ]}\n); Autark