#39789 [NEW]: $_POST data not accessible

Ask a Question related to PHP Bugs, Design and Development.

  1. #1

    Default #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

  2. Similar Questions and Discussions

    1. #39789 [Opn->Fbk]: $_POST data not accessible
      ID: 39789 Updated by: tony2001@php.net Reported By: mpaige at ryanidirect dot com -Status: Open +Status: ...
    2. #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...
    3. 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...
    4. #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: ...
    5. #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...
  3. #2

    Default #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

  4. #3

    Default #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

  5. #4

    Default #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

  6. #5

    Default #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

  7. #6

    Default #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

  8. #7

    Default #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

  9. #8

    Default #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

  10. #9

    Default #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

  11. #10

    Default #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

  12. #11

    Default #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

  13. #12

    Default #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

  14. #13

    Default #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

  15. #14

    Default #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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139