I know, how to use upload. Is I think right, that files is in temporary folder in HTTP server after upload?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
$_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.uploadedfileis the reference we assigned in our HTML form. This identifies which uploaded file we are referring to.