ID: 41649 Updated by: [EMAIL PROTECTED] Reported By: stane dot ferencak at gmail dot com -Status: Open +Status: Feedback -Bug Type: Session related +Bug Type: *General Issues Operating System: Windows XP/2003 PHP Version: 5.2.3 New Comment:
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 Previous Comments: ------------------------------------------------------------------------ [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
