php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #148 $HTTP_POST_VARS when enctype is 'multipart/form-data'
Submitted: 1998-03-05 20:30 UTC Modified: 1998-03-28 14:03 UTC
From: tomo at arts dot box dot co dot jp Assigned:
Status: Closed Package: Feature/Change Request
PHP Version: 3.0 Latest CVS OS: FreeBSD 2.2-stable
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: tomo at arts dot box dot co dot jp
New email:
PHP Version: OS:

 

 [1998-03-05 20:30 UTC] tomo at arts dot box dot co dot jp
I use PHP enabled 'track_vars' option in php3.ini.
But arguments don't be appended to $HTTP_POST_VARS array
if enctype is 'multipart/form-data'.

<form method=post action=foo.php3>
<input type=hidden name=hello value=world>
<input type=submit>
</form>

in foo.php3:
echo "hello ",$HTTP_POST_VARS['hello'],"!\n";
echo "goodbye ",$hello,"!\n";

result:
hello world!
goodbye world!

it seems ok, but when:
<form method=post action=foo.php3 enctype="multipart/form-data">
....
</form>

result:
hello !
goodbye world!

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-03-28 14:03 UTC] jim
This is fixed in the latest CVS.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sat Jan 25 10:01:30 2025 UTC