I was using the system default temp folder (C:\Xampp\tmp) for file uploads. But now I need to specify a temp folder to store the temp files before upload. Is this the right function?
ini_set('upload_tmp_dir','../../tempuploads');
And how to get the file from there?
Till now I was using this:
$file_tmpname = $_FILES["ctrlFileUpload"]["tmp_name"];
I hope this is possible.