below is my script for uploading files:
<?
print_r($HTTP_POST_FILES);
?>
<body>
<form enctype="multipart/form-data" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>
</body>
when I do not upload any file and press submit button, the script occur a waring message says: Warning: No file uploaded in Unknown on line 0.
My PHP version is 4.2.0.
I try the same script on PHP 4.0.6, it don't occur that warning message.
Is someone can help me? THANKS!!
ps. I am come from asia, and sorry for my poor english. :o)