ID: 39321 Comment by: judas dot iscariote at gmail dot com Reported By: josh at pixael dot com Status: Open Bug Type: Variables related Operating System: linux PHP Version: 4.4.4 New Comment:
this has been reported before, and seems to be a internet explorer bug. nothing to do with PHP I think. Previous Comments: ------------------------------------------------------------------------ [2006-10-31 15:33:17] josh at pixael dot com Description: ------------ i'm trying to upload a file via ssl in a form with method post and enctype=multipart/form-data if i upload a gif or jpg is all right if i upload a txt or a pdf or other with INTERNET EXPLORER $_FILES and $_POST is empty with firefox i've no problem php version 4.3.9 this is the url of the test https://www.service-store.com/tst.php Reproduce code: --------------- <html> <head> <title>File Upload Test</title> <meta http-equiv="Content-Type" content="text/html;"> </head> <body bgcolor="#FFFFFF"> <pre> <?php error_reporting(E_ALL); echo'Print $_POST<br />'; print_r($_POST); echo'<br />Print $_FILES<br />'; print_r($_FILES); ?> </pre> <form enctype="multipart/form-data" action="tst.php" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="20000000"> <input type="hidden" name="VAR1" value="1"> Send this file: <input type="file" name="userfile[]"> <input type="hidden" name="VAR2" value="2"> <input type="submit" value="Test"> </form> </body> </html> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=39321&edit=1