The $_FILES superglobal in PHP has an array key named ________ which provides the original name of the uploaded file.
- $_FILES['file']
- $_FILES['name']
- $_FILES['original']
- $_FILES['temp_name']
In PHP, the '$_FILES' superglobal contains information about the uploaded files, and the 'name' key specifically provides the original name of the uploaded file.
Loading...
Related Quiz
- You have a PHP script and you need to get the list of all supported filters. How would you do this?
- What are some common practices in PHP when using constructors in classes?
- How many types of arrays are there in PHP and what are they?
- What is the difference between session_unregister() and session_unset()?
- Which of the following is a common security vulnerability that exploits web applications by injecting malicious SQL code?