Which superglobal stores a variety of information pertinent to a file uploaded to the server via a PHP script?
A
$_FILE Array
B
$_FILES Array
C
$_FILES_UPLOADED Array
D
$_FILE_UPLOADED Array
Correct Answer: $_FILES Array
The superglobal $_FILES is a two-dimensional associative global array of items which are being uploaded by via HTTP POST method and holds the attributes of files.