ID:               41649
 Updated by:       [EMAIL PROTECTED]
 Reported By:      stane dot ferencak at gmail dot com
-Status:           Open
+Status:           Bogus
-Bug Type:         *General Issues
+Bug Type:         Unknown/Other Function
 Operating System: Windows XP/2003
 PHP Version:      5.2.3
 New Comment:

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.


Previous Comments:
------------------------------------------------------------------------

[2007-06-12 07:03:24] stane dot ferencak at gmail dot com

The issue remains after using the PHP 5.2.4-dev version.

------------------------------------------------------------------------

[2007-06-11 14:58:45] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows (zip):
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

For Windows (installer):

  http://snaps.php.net/win32/php5.2-win32-installer-latest.msi



------------------------------------------------------------------------

[2007-06-11 12:57:36] 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
  (
  )
?>


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=41649&edit=1

Reply via email to