Forum Moderators: coopster
I double-checked the following php.ini directives:
memory_limit = 100M
post_max_size = 75M
upload_max_filesize = 75M
file_uploads = On
and the code of my test form is:
<html>
<head>
<title>php form test</title>
</head>
<body>
<pre>
<?php
global $HTTP_POST_FILES;
var_dump($_POST);
var_dump($_FILES);
var_dump($HTTP_POST_FILES);
?>
</pre>
<form action="" method="post">
<input type="file" name="uploaded_file" />
<input type="submit" />
</form>
</body>
</html>