on Tue, 25 Jun 2002 13:10:05 GMT, [EMAIL PROTECTED]
(Theuerkorn Johannes) wrote: 

> Thanks, but this doesn´t work either, the problem with the &#43 is
> that the cgi:param method takes everything after the & sign as the
> next variable. As the syntax for the param method is:
> http://server/script.pl?variable1=value&variable2=value...etc 

It's not '&#43' but '%2B':

    #! perl -w
    use strict;

    use URI::Escape;
    print uri_escape("+");  # prints %2B

-- 
felix

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

Reply via email to