Which PHP superglobal array contains information about uploaded files?
- $_GET
- $_POST
- $_FILES
- $_REQUEST
The $_FILES superglobal array in PHP contains information about uploaded files. It provides details such as file name, file type, and file size for files uploaded via a form.
Loading...
Related Quiz
- In PHP, after you have finished working with a file, you should always close it using the ______ function.
- You have a PHP script and you are getting an error when trying to upload a file to an FTP server. How would you troubleshoot this issue?
- What does the scope of variables mean?
- Which of the following PHP functions are related to constants?
- You have a PHP script and you need to call a static method. How would you do this?