Does anybody have a suggestion as to why 'tmp_name' is not getting a value when I try to upload a file? 'name' is working, but the file doesn't show up in my temporary uploads directory and I can't work with it without 'tmp_name'
this code...
echo "name: (".$HTTP_POST_FILES['newImage']['name'].")<br />";
echo "tmp_name: (".$HTTP_POST_FILES['newImage']['tmp_name'].")";
...gives me this...
name: (Sunset.jpg)
tmp_name: ()
thanks in advance for any help!