Hi all!
I have a really strange problem - when I use this test-code and submit the form, there is nothing in any of the "print_r"ed variables -> Array ( ) Array ( ) Array ( ):
<?
print_r($HTTP_POST_FILES);
print_r($HTTP_POST_VARS);
print_r($_FILES);
?>
<html>
<form name="form" enctype="multipart/form-data" method="POST" action="test.php">
<input type="file" name="file" class="content" size="40">
<input type="hidden" name="testing" value="123456789">
<input type="submit" name="upload" value="Upload">
</form>
</html>
If I remove the enctype="multipart/form-data" there is at least something in $HTTP_POST_VARS.
Is it possible to enable/disable "multipart/form-data" in php.ini ? Might a misconfiguration be the problem or something else ?
Thanks a lot in advance for any hints!
Best regards,
Hannes.