From Bugzilla Helper: User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Description of problem: When I tryed to use ecntype="multipart/form-data" all transeferd data was lost during transfer. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: <form method="POST" action="upload.php" enctype="multipart/form-data"> <input type="text" name="nazev" size="50" maxlength="50"> </form> <?PHP echo $nazev; ?> Additional info:
I had the same problem I solved it by changing the following parameter in /etc/php/ini file_uploads = Off to file_uploads = On Hope this help
opps it was /etc/php.ini and not /etc/php/ini
The default from a security standpoint is to leave this option off and leave it up to the administrator of the server to enable it if they choose. Really it's a pick a choose option. You have to understand that when php is installed that you MUST look through the php.ini file settings to ensure they are correct for your setup. Since a few people complained I'm going to leave it enabled in future versions. This is not a bug Phil =--=