0 votes
in PHP by
What is the difference between $_FILES['userfile']['name'] and $_FILES['userfile']['tmp_name']?

1 Answer

0 votes
by
$_FILES['userfile']['name'] represents the original name of the file on the client machine,

$_FILES['userfile']['tmp_name'] represents the temporary filename of the file stored on the server.

Related questions

0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
0 votes
asked Jun 22, 2019 in PHP by SakshiSharma
...