I'm writing a file upload script.
When a file has been uploaded, one can get the temporary file name using:
$_FILES[’file’][’tmp_name’]
However, is there a way to know what the temp file is called before the file is fully uploaded?
For example, if I'm uploading a 70M file, which takes say 5 minutes. Is there a way to know what the temp file is called 2 minutes into the upload?
TIA.