Login
Remember
Register
Ask a Question
What is the difference between $_FILES['userfile']['name'] and $_FILES['userfile']['tmp_name']?
0
votes
asked
Jun 23, 2019
in
PHP
by
SakshiSharma
What is the difference between $_FILES['userfile']['name'] and $_FILES['userfile']['tmp_name']?
#php
#php-php
#php-server-monitor-script
#php-support
#mysql-php
#php-programmer
#php-development
#php-language
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 23, 2019
by
anonymous
$_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.
...