I still have problems with my uploading form. I checked the " enctype=multipart/form-data" and it´s correct. What I think that is happening is that maybe the file remains with the temp_name and never changes.
I read this at the phpmanual:
"The file will be deleted from the temporary directory at the end of the request if it has not been moved away or renamed. "
and I get this message anytime I upload a file:
File was successfully uploaded. Debugging info:
Array
(
[userfile] => Array
(
[name] => 1.jpg
[type] => image/jpeg
[tmp_name] => C:\WINDOWS\php2DC.tmp
[size] => 960
)
)
So I don´t know if the tmp_name must change?
Thanx