|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-17 09:45 UTC] alistair at maclean-nj dot com
[2002-04-17 10:03 UTC] sander@php.net
[2002-04-17 14:25 UTC] alistair at maclean-nj dot com
[2002-04-17 15:08 UTC] sander@php.net
[2002-04-17 15:43 UTC] alistair at maclean-nj dot com
[2002-04-17 15:47 UTC] robert at webmotion dot com
[2002-04-18 08:50 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 13:00:01 2025 UTC |
Built 4.2.0RC4 with Apache 2.0.35 Build files below. Testing an existing site I noticed that I was dropping parameters passed between pages. Using an anchor like: <a href="somepage.php?valuea=something">Click me</a> An code in the other page like: echo "value=:".$valuea.":"; Is not return the expected output (value=:something:) Instead I get (value=::) It looks like the name/value pair is being lost. I have attached two test pages. These work in Apache 1.3.20/PHP 4.1.2. There seem to be no errors in the apache logs. 127.0.0.1 - - [17/Apr/2002:09:02:30 -0400] "GET /php/atest.php HTTP/1.1" 200 117 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020311" 127.0.0.1 - - [17/Apr/2002:09:02:32 -0400] "GET /php/btest.php?value1=first HTTP/1.1" 200 96 "http://localhost/php/atest.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020311" BUILDS. --------------------------------------------------- Apache: ./configure \ "--with-layout=RedHat" \ "--enable-shared=max" \ "--enable-rule=SHARED_CORE" \ "--enable-info" \ "--disable-userdir" \ "--enable-so" \ "--enable-vhost-alias" \ "--enable-cgi" \ "--enable-ssl" \ "--enable-usertrack" \ "--enable-unique-id" \ "$@" ---------------------------------- PHP: ./configure --with-mysql=/usr --enable-trans-sid --with-apxs2 Test code :atest.php ----------------------------------- <html> <head> <title>Test</title> </head> <body> <? $value1 = "first"; echo "<a href=\"btest.php?value1=$value1\">Test With 1</a>"; ?> </body> </html> Test Code: btest.php ------------------------------------------- <html> <head> <title>Test Second Page</title> </head> <body> <?php echo "First Param = :".$value1.":"; ?> </body> </html>