> Small files big files... all the same problem. This files works with > your postet test-script. > Can you post the code?
You can "view source" to see the test page (there is no PHP in it even though it's named test.php). The form action points to this file: <?php echo 'VAR DUMP $_POST:<p />'; var_dump($_POST); echo '<p />VAR DUMP $_FILES:<p />'; var_dump($_FILES); echo '<p />'; foreach($_FILES as $file) { $n = $file['name']; $s = $file['size']; if (!$n) continue; echo "File: $n ($s bytes)"; } ?>