I know, how to use upload. Is I think right, that files is in temporary folder in HTTP server after upload?
+1
A:
Yes, indeed, files go to the temp folder of you sever host OS. If you have Windows, for instance, it would go into C:\Windows\temp
Hope it helps!!
When I say:
If you have Windows
I mean if you have Windows in your local host server for testing, so you may get the idea
David Conde
2010-09-03 06:25:48
+1
A:
Yes it resides on the server in a temporary directory with a temporary name.
ShiVik
2010-09-03 06:27:13
+4
A:
$_FILES['uploadedfile']['tmp_name']
contains the path to the temporary file that resides on the server. The file should exist on the server in a temporary directory with a temporary name.
uploadedfile
is the reference we assigned in our HTML form. This identifies which uploaded file we are referring to.
codaddict
2010-09-03 06:29:08
A:
The temporary filename of the file in which the uploaded file was stored on the server.
Alexander.Plutov
2010-09-03 06:34:54