[PHP-DEV] Bug #2016: Query String not appearing when using #<num> in the URL before ?QUERY_STRING From: alex.kuprion <email protected>
Date: 08/09/99

From: alex.kuprion <email protected>
Operating system: RedHat Linux 6.0
PHP version: 3.0.12
PHP Bug Type: Other
Bug description: Query String not appearing when using #&lt;num&gt; in the URL before ?QUERY_STRING

When I run the following script like:

http://webpage/test.php3?test_string

The string (test_string) stored in $QUERY_STRING will be passed to the script. However if I do something like:

http://webpage.test.php3#1?test_string

The string will not be passed in $QUERY_STRING. I have also tried caling getenv('QUERY_STRING') but still nothing.

Here is a test script I've used to reproduce the problem:

<HTML>
<BODY>
<?
echo "$QUERY_STRING";

?>
</BODY>
</HTML>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>