I'm trying upload a file using PHP4
I'm running it on IIS5.1/PHP4 ISAPI version.
I have given write permission to the temp upload folder and the folder I want move the file to.
When I upload the file the following php line of code returns none
echo $HTTP_POST_FILES['uploadfile']['tmp_name'];
Therefore using the function is_uploaded_file fails as the variable above does not refer to any file.
any suggestions where i am going wrong.
Thanks
nt