yes, that's what happening.
Is there a way to save that path?
for example, (I'm getting a file of an image)
If the origninal file is in /home/janine/scanned/image.jpg and and then the form allows the user to browse with the browse button to find the file. That path above is listed in the text box, but when passed on, it's that temp path /tmp/php5PqefU. I know that you can pull information out on the file. (i.e. $fupload is the variable, so $fupload_name, $fupload_size, $fupload_type) but is there a way to save that original path? (/home/janine/scanned/) for further processing?
you need to deal with the uploaded file
(copying or, much better if you're running
on unix, linking it) to a permanent copy.
As above, you mentioned either copying the variable or also linking it to the permanent copy. How would you do the linking? (yes, I'm running linux)
thanks.