Hi my server wont seem to recognise any posted file data. This code makes an empty array.
p.s. This is apache 2.0.48 PHP 4.3.4
<?php if(isset($HTTP_POST_VARS['Submit'])) {
print_r($HTTP_POST_FILES); } ?>
<form name="form1" id="form1" enctype="multipart/form-data"
method="post" action="">
<input type="file" name="file" />
<input type="submit" name="Submit" value="Submit" />
</form>