$escmode = 2 (or 6)
The result of a Perl expression is always URL-escaped (e.g., `&' becomes 
`%26').

Is what the docs say.

My question is how to define 'perl expression':

Should this result in $message being url escaped?
[-
local $escmode = 2;
my $message = "A Message With Spaces";
$http_headers_out{'Location'} = "http://www.apple.com?message=" . $message;
exit();
-]

It does not and I haven't figured out a way to make it so...

-mp


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to