In article <a7o8e8$e5j$[EMAIL PROTECTED]>, tatrache <[EMAIL PROTECTED]> wrote:
>Using Netscape 6.x browser for Windows2000, if you use a `, ^,  ', etc.
>
>characters within the context of a URL, the browser encodes the character
>
>to a hex value before passing it along to the server, and the page will not
>load.

You should call an appropriate unescape routine in your cgi script. If there
isn't one you need to do the equivalent of this perl

$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;

        nhoJ
-- 

Reply via email to