79595050

Date: 2025-04-27 13:05:27
Score: 0.5
Natty:
Report link

$_FILES is an associative array where the keys are the name attribute of the files <input> element

So in order to access the 2 files do the following

$file1 =  $_FILES['file']['name'];
$file2 = $_FILES['file2']['name'];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ammar