ID: 15055
Updated by: sander
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: *General Issues
Operating System: Linux
PHP Version: 4.1.1
New Comment:

_REQUEST is only initialized once (at start). Any later changes to _GET
and/or _POST will not show up.


Previous Comments:
------------------------------------------------------------------------

[2002-01-15 15:48:15] [EMAIL PROTECTED]

If you set a variable in the $_GET array,
it will not show up in the $_REQUEST array.

<?
$_GET[page] = "index.php";
echo "get=".$_GET[page]."\n";
echo "request=".$_REQUEST[page]."\n";
?>

This will output:

get=index.php
request=

But it should output:

get=index.php
request=index.php

My configure was:
./configure \
--enable-sockets \
--with-ftp \
--with-xml \
--with-pgsql \
--with-apxs=/usr/local/apache/bin/apxs \
--with-imap

Thanks,
-Pete

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=15055&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to