Ask a Question related to PHP Bugs, Design and Development.
-
mpaige at ryanidirect dot com #1
#39789 [NEW]: $_POST data not accessible
From: mpaige at ryanidirect dot com
Operating system: Windows 2003 /XP sp2
PHP version: 5.2.0
PHP Bug Type: *General Issues
Bug description: $_POST data not accessible
Description:
------------
$_POST variable unavailable while $_GET is.
Reproduce code:
---------------
// FAIL: This returns -1
if(isset($_POST['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="POST">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
If I change the from to GET and look for a GET
// SUCCESS: This returns 1
if(isset($_GET['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="GET">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
Expected result:
----------------
Both should return 1.
Actual result:
--------------
-1 on $_POST.
INI is relatively untouched past standard dir paths and cgi redirect
disable, no 3rd party extensions.
looks like "#37276 problems witch $_POST array" but not fixed in
windows...
--
Edit bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
--
Try a CVS snapshot (PHP 4.4): [url]http://bugs.php.net/fix.php?id=39789&r=trysnapshot44[/url]
Try a CVS snapshot (PHP 5.2): [url]http://bugs.php.net/fix.php?id=39789&r=trysnapshot52[/url]
Try a CVS snapshot (PHP 6.0): [url]http://bugs.php.net/fix.php?id=39789&r=trysnapshot60[/url]
Fixed in CVS: [url]http://bugs.php.net/fix.php?id=39789&r=fixedcvs[/url]
Fixed in release: [url]http://bugs.php.net/fix.php?id=39789&r=alreadyfixed[/url]
Need backtrace: [url]http://bugs.php.net/fix.php?id=39789&r=needtrace[/url]
Need Reproduce Script: [url]http://bugs.php.net/fix.php?id=39789&r=needscript[/url]
Try newer version: [url]http://bugs.php.net/fix.php?id=39789&r=oldversion[/url]
Not developer issue: [url]http://bugs.php.net/fix.php?id=39789&r=support[/url]
Expected behavior: [url]http://bugs.php.net/fix.php?id=39789&r=notwrong[/url]
Not enough info: [url]http://bugs.php.net/fix.php?id=39789&r=notenoughinfo[/url]
Submitted twice: [url]http://bugs.php.net/fix.php?id=39789&r=submittedtwice[/url]
register_globals: [url]http://bugs.php.net/fix.php?id=39789&r=globals[/url]
PHP 3 support discontinued: [url]http://bugs.php.net/fix.php?id=39789&r=php3[/url]
Daylight Savings: [url]http://bugs.php.net/fix.php?id=39789&r=dst[/url]
IIS Stability: [url]http://bugs.php.net/fix.php?id=39789&r=isapi[/url]
Install GNU Sed: [url]http://bugs.php.net/fix.php?id=39789&r=gnused[/url]
Floating point limitations: [url]http://bugs.php.net/fix.php?id=39789&r=float[/url]
No Zend Extensions: [url]http://bugs.php.net/fix.php?id=39789&r=nozend[/url]
MySQL Configuration Error: [url]http://bugs.php.net/fix.php?id=39789&r=mysqlcfg[/url]
mpaige at ryanidirect dot com Guest
-
#39789 [Opn->Fbk]: $_POST data not accessible
ID: 39789 Updated by: tony2001@php.net Reported By: mpaige at ryanidirect dot com -Status: Open +Status: ... -
#39647 [NEW]: Not populating $_POST data
From: security at isnnetworks dot net Operating system: Linux, Centos 4.4 PHP version: 5.2.0 PHP Bug Type: *General Issues... -
Can't get post data with $_POST
I cannot get post data to always be sent to a PHP script, it works some of the time but once in a while it might just come up blank. If I click... -
#26004 [Opn->Fbk]: $_POST variables not set when using enctype="multipart/form-data"
ID: 26004 Updated by: moriyoshi@php.net Reported By: jacknorton101 at hotmail dot com -Status: Open +Status: ... -
#26004 [NEW]: $_POST variables not set when using enctype="multipart/form-data"
From: jacknorton101 at hotmail dot com Operating system: RedHat Linux 9 PHP version: 4.3.3 PHP Bug Type: *General Issues Bug... -
mpaige at ryanidirect dot com #2
#39789 [Fbk->Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
-Status: Feedback
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
Previous Comments:
------------------------------------------------------------------------
[2006-12-10 18:55:17] [email]tony2001@php.net[/email]
Disable all firewalls and make sure your browser actually send this
data.
------------------------------------------------------------------------
[2006-12-10 18:52:53] mpaige at ryanidirect dot com
Description:
------------
$_POST variable unavailable while $_GET is.
Reproduce code:
---------------
// FAIL: This returns -1
if(isset($_POST['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="POST">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
If I change the from to GET and look for a GET
// SUCCESS: This returns 1
if(isset($_GET['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="GET">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
Expected result:
----------------
Both should return 1.
Actual result:
--------------
-1 on $_POST.
INI is relatively untouched past standard dir paths and cgi redirect
disable, no 3rd party extensions.
looks like "#37276 problems witch $_POST array" but not fixed in
windows...
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
iliaa@php.net #3
#39789 [Opn->Fbk]: $_POST data not accessible
ID: 39789
Updated by: [email]iliaa@php.net[/email]
Reported By: mpaige at ryanidirect dot com
-Status: Open
+Status: Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
What is your variables_order set to?
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 14:50:43] mpaige at ryanidirect dot com
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
------------------------------------------------------------------------
[2006-12-10 18:55:17] [email]tony2001@php.net[/email]
Disable all firewalls and make sure your browser actually send this
data.
------------------------------------------------------------------------
[2006-12-10 18:52:53] mpaige at ryanidirect dot com
Description:
------------
$_POST variable unavailable while $_GET is.
Reproduce code:
---------------
// FAIL: This returns -1
if(isset($_POST['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="POST">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
If I change the from to GET and look for a GET
// SUCCESS: This returns 1
if(isset($_GET['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="GET">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
Expected result:
----------------
Both should return 1.
Actual result:
--------------
-1 on $_POST.
INI is relatively untouched past standard dir paths and cgi redirect
disable, no 3rd party extensions.
looks like "#37276 problems witch $_POST array" but not fixed in
windows...
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
iliaa@php.net Guest
-
mpaige at ryanidirect dot com #4
#39789 [Fbk->Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
-Status: Feedback
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
variables_order = "GPCS"
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 14:56:17] [email]iliaa@php.net[/email]
What is your variables_order set to?
------------------------------------------------------------------------
[2006-12-11 14:50:43] mpaige at ryanidirect dot com
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
------------------------------------------------------------------------
[2006-12-10 18:55:17] [email]tony2001@php.net[/email]
Disable all firewalls and make sure your browser actually send this
data.
------------------------------------------------------------------------
[2006-12-10 18:52:53] mpaige at ryanidirect dot com
Description:
------------
$_POST variable unavailable while $_GET is.
Reproduce code:
---------------
// FAIL: This returns -1
if(isset($_POST['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="POST">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
If I change the from to GET and look for a GET
// SUCCESS: This returns 1
if(isset($_GET['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="GET">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
Expected result:
----------------
Both should return 1.
Actual result:
--------------
-1 on $_POST.
INI is relatively untouched past standard dir paths and cgi redirect
disable, no 3rd party extensions.
looks like "#37276 problems witch $_POST array" but not fixed in
windows...
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
mpaige at ryanidirect dot com #5
#39789 [Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 14:59:34] mpaige at ryanidirect dot com
variables_order = "GPCS"
------------------------------------------------------------------------
[2006-12-11 14:56:17] [email]iliaa@php.net[/email]
What is your variables_order set to?
------------------------------------------------------------------------
[2006-12-11 14:50:43] mpaige at ryanidirect dot com
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
------------------------------------------------------------------------
[2006-12-10 18:55:17] [email]tony2001@php.net[/email]
Disable all firewalls and make sure your browser actually send this
data.
------------------------------------------------------------------------
[2006-12-10 18:52:53] mpaige at ryanidirect dot com
Description:
------------
$_POST variable unavailable while $_GET is.
Reproduce code:
---------------
// FAIL: This returns -1
if(isset($_POST['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="POST">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
If I change the from to GET and look for a GET
// SUCCESS: This returns 1
if(isset($_GET['senderName'])){
$msg = 1;
} else {
$msg = -1;
}
echo $msg;
<form action="sendCard.php" method="GET">
<input name="senderName" value="" type="text" size="60" maxlength="60"
/><br />
<input name="send" type="submit" /><br />
</form>
Expected result:
----------------
Both should return 1.
Actual result:
--------------
-1 on $_POST.
INI is relatively untouched past standard dir paths and cgi redirect
disable, no 3rd party extensions.
looks like "#37276 problems witch $_POST array" but not fixed in
windows...
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
mpaige at ryanidirect dot com #6
#39789 [Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
TYPO: when post and get are reversed (PG), post and get both NOW work.
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 15:06:00] mpaige at ryanidirect dot com
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
------------------------------------------------------------------------
[2006-12-11 14:59:34] mpaige at ryanidirect dot com
variables_order = "GPCS"
------------------------------------------------------------------------
[2006-12-11 14:56:17] [email]iliaa@php.net[/email]
What is your variables_order set to?
------------------------------------------------------------------------
[2006-12-11 14:50:43] mpaige at ryanidirect dot com
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
------------------------------------------------------------------------
[2006-12-10 18:55:17] [email]tony2001@php.net[/email]
Disable all firewalls and make sure your browser actually send this
data.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
tony2001@php.net #7
#39789 [Opn->Fbk]: $_POST data not accessible
ID: 39789
Updated by: [email]tony2001@php.net[/email]
Reported By: mpaige at ryanidirect dot com
-Status: Open
+Status: Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
Please post your phpinfo() somewhere and put the link here.
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 15:36:28] mpaige at ryanidirect dot com
TYPO: when post and get are reversed (PG), post and get both NOW work.
------------------------------------------------------------------------
[2006-12-11 15:06:00] mpaige at ryanidirect dot com
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
------------------------------------------------------------------------
[2006-12-11 14:59:34] mpaige at ryanidirect dot com
variables_order = "GPCS"
------------------------------------------------------------------------
[2006-12-11 14:56:17] [email]iliaa@php.net[/email]
What is your variables_order set to?
------------------------------------------------------------------------
[2006-12-11 14:50:43] mpaige at ryanidirect dot com
I am behind the firewall on the 2003 box, and on my local developement
copy there is no firewall.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
tony2001@php.net Guest
-
mpaige at ryanidirect dot com #8
#39789 [Fbk->Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
-Status: Feedback
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
as requested (view source):
[url]http://167.206.191.45/php.html[/url]
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 15:46:02] [email]tony2001@php.net[/email]
Please post your phpinfo() somewhere and put the link here.
------------------------------------------------------------------------
[2006-12-11 15:36:28] mpaige at ryanidirect dot com
TYPO: when post and get are reversed (PG), post and get both NOW work.
------------------------------------------------------------------------
[2006-12-11 15:06:00] mpaige at ryanidirect dot com
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
------------------------------------------------------------------------
[2006-12-11 14:59:34] mpaige at ryanidirect dot com
variables_order = "GPCS"
------------------------------------------------------------------------
[2006-12-11 14:56:17] [email]iliaa@php.net[/email]
What is your variables_order set to?
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
tony2001@php.net #9
#39789 [Opn->Fbk]: $_POST data not accessible
ID: 39789
Updated by: [email]tony2001@php.net[/email]
Reported By: mpaige at ryanidirect dot com
-Status: Open
+Status: Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
phpinfo(), please. Not php.ini.
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 15:55:41] mpaige at ryanidirect dot com
as requested (view source):
[url]http://167.206.191.45/php.html[/url]
------------------------------------------------------------------------
[2006-12-11 15:46:02] [email]tony2001@php.net[/email]
Please post your phpinfo() somewhere and put the link here.
------------------------------------------------------------------------
[2006-12-11 15:36:28] mpaige at ryanidirect dot com
TYPO: when post and get are reversed (PG), post and get both NOW work.
------------------------------------------------------------------------
[2006-12-11 15:06:00] mpaige at ryanidirect dot com
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
------------------------------------------------------------------------
[2006-12-11 14:59:34] mpaige at ryanidirect dot com
variables_order = "GPCS"
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
tony2001@php.net Guest
-
mpaige at ryanidirect dot com #10
#39789 [Fbk->Opn]: $_POST data not accessible
ID: 39789
User updated by: mpaige at ryanidirect dot com
Reported By: mpaige at ryanidirect dot com
-Status: Feedback
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
[url]http://167.206.191.45/php2003.php[/url]
[url]http://167.206.191.45/phpXPsp2.html[/url]
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 16:04:43] [email]tony2001@php.net[/email]
phpinfo(), please. Not php.ini.
------------------------------------------------------------------------
[2006-12-11 15:55:41] mpaige at ryanidirect dot com
as requested (view source):
[url]http://167.206.191.45/php.html[/url]
------------------------------------------------------------------------
[2006-12-11 15:46:02] [email]tony2001@php.net[/email]
Please post your phpinfo() somewhere and put the link here.
------------------------------------------------------------------------
[2006-12-11 15:36:28] mpaige at ryanidirect dot com
TYPO: when post and get are reversed (PG), post and get both NOW work.
------------------------------------------------------------------------
[2006-12-11 15:06:00] mpaige at ryanidirect dot com
just switched them PGCS and the $_post and the $_get no work
(variables_order = "PGCS"). Are their implications to this or is this
resolved?
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
mpaige at ryanidirect dot com Guest
-
iliaa@php.net #11
#39789 [Opn->Fbk]: $_POST data not accessible
ID: 39789
Updated by: [email]iliaa@php.net[/email]
Reported By: mpaige at ryanidirect dot com
-Status: Open
+Status: Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
Please try using this CVS snapshot:
[url]http://snaps.php.net/php5.2-latest.tar.gz[/url]
For Windows:
[url]http://snaps.php.net/win32/php5.2-win32-latest.zip[/url]
Previous Comments:
------------------------------------------------------------------------
[2006-12-11 16:35:24] mpaige at ryanidirect dot com
[url]http://167.206.191.45/php2003.php[/url]
[url]http://167.206.191.45/phpXPsp2.html[/url]
------------------------------------------------------------------------
[2006-12-11 16:04:43] [email]tony2001@php.net[/email]
phpinfo(), please. Not php.ini.
------------------------------------------------------------------------
[2006-12-11 15:55:41] mpaige at ryanidirect dot com
as requested (view source):
[url]http://167.206.191.45/php.html[/url]
------------------------------------------------------------------------
[2006-12-11 15:46:02] [email]tony2001@php.net[/email]
Please post your phpinfo() somewhere and put the link here.
------------------------------------------------------------------------
[2006-12-11 15:36:28] mpaige at ryanidirect dot com
TYPO: when post and get are reversed (PG), post and get both NOW work.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
iliaa@php.net Guest
-
php at michasch dot de #12
#39789 [Com]: $_POST data not accessible
ID: 39789
Comment by: php at michasch dot de
Reported By: mpaige at ryanidirect dot com
Status: Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
Same problem here.
WinXP SP2 Ger Apache 2.2, PHP 5.2.0
Yesterday i tried with a current snapshot, but the error still
remains.
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d
mod_autoindex_color PHP/5.2.1RC4-dev Server at localhost Port 80
PHP Version 5.2.1RC4-dev
System Windows NT COMPUTERNAME 5.1 build 2600
Build Date Jan 23 2007 16:17:13
Previous Comments:
------------------------------------------------------------------------
[2007-01-20 23:03:25] [email]iliaa@php.net[/email]
Please try using this CVS snapshot:
[url]http://snaps.php.net/php5.2-latest.tar.gz[/url]
For Windows:
[url]http://snaps.php.net/win32/php5.2-win32-latest.zip[/url]
------------------------------------------------------------------------
[2006-12-11 16:35:24] mpaige at ryanidirect dot com
[url]http://167.206.191.45/php2003.php[/url]
[url]http://167.206.191.45/phpXPsp2.html[/url]
------------------------------------------------------------------------
[2006-12-11 16:04:43] [email]tony2001@php.net[/email]
phpinfo(), please. Not php.ini.
------------------------------------------------------------------------
[2006-12-11 15:55:41] mpaige at ryanidirect dot com
as requested (view source):
[url]http://167.206.191.45/php.html[/url]
------------------------------------------------------------------------
[2006-12-11 15:46:02] [email]tony2001@php.net[/email]
Please post your phpinfo() somewhere and put the link here.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
php at michasch dot de Guest
-
dan dot marsden at gmail dot com #13
#39789 [Com]: $_POST data not accessible
ID: 39789
Comment by: dan dot marsden at gmail dot com
Reported By: mpaige at ryanidirect dot com
Status: No Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
I have this issue with IE 7 - $_POST is empty - works with FF fine
though.....
Previous Comments:
------------------------------------------------------------------------
[2007-01-28 01:00:00] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
------------------------------------------------------------------------
[2007-01-24 13:48:27] php at michasch dot de
Same problem here.
WinXP SP2 Ger Apache 2.2, PHP 5.2.0
Yesterday i tried with a current snapshot, but the error still
remains.
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d
mod_autoindex_color PHP/5.2.1RC4-dev Server at localhost Port 80
PHP Version 5.2.1RC4-dev
System Windows NT COMPUTERNAME 5.1 build 2600
Build Date Jan 23 2007 16:17:13
------------------------------------------------------------------------
[2007-01-20 23:03:25] [email]iliaa@php.net[/email]
Please try using this CVS snapshot:
[url]http://snaps.php.net/php5.2-latest.tar.gz[/url]
For Windows:
[url]http://snaps.php.net/win32/php5.2-win32-latest.zip[/url]
------------------------------------------------------------------------
[2006-12-11 16:35:24] mpaige at ryanidirect dot com
[url]http://167.206.191.45/php2003.php[/url]
[url]http://167.206.191.45/phpXPsp2.html[/url]
------------------------------------------------------------------------
[2006-12-11 16:04:43] [email]tony2001@php.net[/email]
phpinfo(), please. Not php.ini.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
dan dot marsden at gmail dot com Guest
-
webmaster at whatsthescuttlebutt dot com #14
#39789 [Com]: $_POST data not accessible
ID: 39789
Comment by: webmaster at whatsthescuttlebutt dot com
Reported By: mpaige at ryanidirect dot com
Status: No Feedback
Bug Type: Unknown/Other Function
Operating System: Windows 2003 /XP sp2
PHP Version: 5.2.0
New Comment:
I am having this problem as well. I have a PHP page with multiple
forms, one that uses the GET method and several that use the POST
method
(the POST forms are part of a content star rating system). Everything
works great in Firefox and Safari, but in IE7 the POST variable is
empty
when the user submits the form with POST method (the action of that
form
is the full URI which contains GET names/values, so I am using GET and
POST at the same time). I tried changing the order as suggested but
that did not solve the problem. Since it works in other browsers, I
assume my code and syntax is correct and that this is some issue with
IE? I don't have access to older versions of IE to see if it is
occurring in IE6.
Previous Comments:
------------------------------------------------------------------------
[2007-02-06 22:52:50] dan dot marsden at gmail dot com
I have this issue with IE 7 - $_POST is empty - works with FF fine
though.....
------------------------------------------------------------------------
[2007-01-28 01:00:00] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
------------------------------------------------------------------------
[2007-01-24 13:48:27] php at michasch dot de
Same problem here.
WinXP SP2 Ger Apache 2.2, PHP 5.2.0
Yesterday i tried with a current snapshot, but the error still
remains.
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d
mod_autoindex_color PHP/5.2.1RC4-dev Server at localhost Port 80
PHP Version 5.2.1RC4-dev
System Windows NT COMPUTERNAME 5.1 build 2600
Build Date Jan 23 2007 16:17:13
------------------------------------------------------------------------
[2007-01-20 23:03:25] [email]iliaa@php.net[/email]
Please try using this CVS snapshot:
[url]http://snaps.php.net/php5.2-latest.tar.gz[/url]
For Windows:
[url]http://snaps.php.net/win32/php5.2-win32-latest.zip[/url]
------------------------------------------------------------------------
[2006-12-11 16:35:24] mpaige at ryanidirect dot com
[url]http://167.206.191.45/php2003.php[/url]
[url]http://167.206.191.45/phpXPsp2.html[/url]
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
[url]http://bugs.php.net/39789[/url]
--
Edit this bug report at [url]http://bugs.php.net/?id=39789&edit=1[/url]
webmaster at whatsthescuttlebutt dot com Guest



Reply With Quote

