Where do temp files in form-based upload get created?
Posted: Tue Dec 16, 2003 12:47 am
I am hoping this is a simple thing, but I can't locate the file that is being created by my upload form. The evidence is that it is being created ... the evidence coming from phpinfo() in the posting php script ...
_FILES["thefile"] Array
(
[name] => Array
(
[0] => map.jpg
)
[type] => Array
(
[0] => image/pjpeg
)
[tmp_name] => Array
(
[0] => ./\phpC7.tmp
)
[error] => Array
(
[0] => 0
)
[size] => Array
(
[0] => 47607
)
)
It is this that makes me believe that the file being created (error = 0, and other details are set). I'm unsure what make of ./\phpC7.tmp (the /\ part) in the temp filename.
Anyone who can let me know, thanks.
Wayne.
_FILES["thefile"] Array
(
[name] => Array
(
[0] => map.jpg
)
[type] => Array
(
[0] => image/pjpeg
)
[tmp_name] => Array
(
[0] => ./\phpC7.tmp
)
[error] => Array
(
[0] => 0
)
[size] => Array
(
[0] => 47607
)
)
It is this that makes me believe that the file being created (error = 0, and other details are set). I'm unsure what make of ./\phpC7.tmp (the /\ part) in the temp filename.
Anyone who can let me know, thanks.
Wayne.