php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41649 POST delay on MS IE
Submitted: 2007-06-11 12:57 UTC Modified: 2007-06-25 19:09 UTC
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:1 (50.0%)
From: stane dot ferencak at gmail dot com Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 5.2.3 OS: Windows XP/2003
Private report: No CVE-ID: None
 [2007-06-11 12:57 UTC] stane dot ferencak at gmail dot com
Description:
------------
As of PHP 5.2.X the POST behavior in submitting the form is not the same as in 5.1.X or 4.X.X.
It seems that MS Internet Explorer 6.0 and 7.0 are having problem with form submit request (POST), which are posted immediately one after another. User has to wait for 5 seconds in order for submit to work correctly. This problem disappears when working with Mozilla Firefox.


Reproduce code:
---------------
<?php
  print_r($_POST);
?>
<br/>
<form method="post" action="">
  <select name="idlang">
    <option value='us'>English</option>
    <option value='de'>Deutsch</option>
  </select>
  <br/>
  <input name="select" type="submit" value="Select" />
</form>

Expected result:
----------------
User wants to use form submit (POST) one after another with minimum delay. _POST array should contain values of submit request.

<?php
  Array
  (
    [idlang] => us
  )
?>

After successive form submit (POST) on MS IE 6.0 or 7.0 the second 
request is not succesfull. POST array is empty in this case . 

Actual result:
--------------
After successive form submits (POST) on MS IE 6.0 or 7.0 the second request is not successful. After second submit, form is submitted but POST array is empty. But after 5 seconds delay between two submit requests, _POST returns the expected result - is not empty.

<?php
  Array
  (
  )
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-06-12 07:03 UTC] stane dot ferencak at gmail dot com
The issue remains after using the PHP 5.2.4-dev version.
 [2007-06-25 19:09 UTC] tony2001@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.

PHP knows nothing of your browser and does not depend on it.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue May 07 17:01:33 2024 UTC