php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18415 $_POST and $HTTP_POST_VARS are not exported
Submitted: 2002-07-18 14:09 UTC Modified: 2002-07-18 14:28 UTC
From: ilia at prohost dot org Assigned:
Status: Closed Package: *Web Server problem
PHP Version: 4.2.1 OS: Linux 2.4.17
Private report: No CVE-ID: None
 [2002-07-18 14:09 UTC] ilia at prohost dot org
When 'file_upload' setting in php.ini set to Off, then any form submited via POST with 'enctype="multipart/form-data"' in its defenition will not export $_POST and $HTTP_POST_VARS on submission.
Below is an example script that demonstrates the problem.
<?php 
echo '<pre>';
print_r($HTTP_POST_VARS);
echo '</pre>'; ?>
<html><form method="post" action="test.php" enctype="multipart/form-data"><input type="submit" name="test" value="Click Me"></form>

Script Output
-- file_upload == On --
Array
(
    [test] => Click Me
)
-- file_upload == Off --
Array
(
)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-07-18 14:28 UTC] sniper@php.net
This bug has been fixed in CVS. You can grab a snapshot of the
CVS version at http://snaps.php.net/. In case this was a documentation 
problem, the fix will show up soon at http://www.php.net/manual/.
In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites.
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 06:01:30 2024 UTC