What does $_FILES mean?

  • An array of uploaded files
  • A global constant
  • A predefined file function
  • A global function
In PHP, $_FILES is a superglobal array that holds information about uploaded files, such as file names, temporary locations, and file sizes. It is used when handling file uploads. Learn more: http://php.net/manual/en/reserved.variables.files.php
Add your answer
Loading...

Leave a comment

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