in reply to Can the "#" character be passed via $ENV{QUERY_STRING} ?
The character is reserved to delimit the anchor part of the URL. Web client must not send the anchor as part of an HTTP request, which is why you don't see it. You can include the character in a URL by encoding it. The encoded value is "%23" (or use URI::Escape to do it on the fly). CGI automatically decodes it in your script.
|
|---|