Re: [PHP-DEV] HTTP/GET parameters not registered in $_GET

2002-04-12 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > Sebastian Bergmann wrote: >> Update: It seems to work with a Debug_TS build of PHP, and does not >> work with a Release_TS build. Which doesn't make any sense... > > Just tested the PHP_4_2_0 branch, and it works fine. I really don't know what this is / was about, b

Re: [PHP-DEV] HTTP/GET parameters not registered in $_GET

2002-04-12 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > Update: It seems to work with a Debug_TS build of PHP, and does not > work with a Release_TS build. Which doesn't make any sense... Just tested the PHP_4_2_0 branch, and it works fine. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://p

Re: [PHP-DEV] HTTP/GET parameters not registered in $_GET

2002-04-12 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > Sebastian Bergmann wrote: >> When I switch to the Apache2Filter SAPI it outputs >> >> Array >> ( >> [foo] => bar >> ) >> >> which is, of course, correct. > > I'm puzzled, because now - out of a sudden - it doesn't work with > the Apache2Filte

Re: [PHP-DEV] HTTP/GET parameters not registered in $_GET

2002-04-12 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > When I switch to the Apache2Filter SAPI it outputs > > Array > ( > [foo] => bar > ) > > which is, of course, correct. I'm puzzled, because now - out of a sudden - it doesn't work with the Apache2Filter SAPI either. -- Sebastian Bergmann

[PHP-DEV] HTTP/GET parameters not registered in $_GET

2002-04-11 Thread Sebastian Bergmann
Win32, Apache 2.0.36-dev, PHP 4.3.0-dev. The script outputs Array( ) when called with http://localhost/test.php?foo=bar using the CGI SAPI. When I switch to the Apache2Filter SAPI it outputs Array ( [foo] => bar ) which is, of cours