The $_FILES superglobal array in PHP holds information about uploaded files.

  • TRUE
  • FALSE
  • nan
  • nan
In PHP, the $_FILES superglobal array is used to hold information about uploaded files. It provides access to various details of the uploaded file, such as the file name, file type, file size, temporary file path, and error status. This array is available after a file has been uploaded using an HTML form with the appropriate settings. It allows PHP developers to access and handle uploaded files during file upload processes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *