Aryan PrajapatKnowledge Contributor
Where does the distinction between $_FILES['userfile']['name'] and $_FILES['userfile']['tmp name'] come from in php?
Where does the distinction between $_FILES['userfile']['name'] and $_FILES['userfile']['tmp name'] come from in php?
$_FILES[‘user file]
The original name of the file on the client system is represented by [‘name’].
The temporary filename of the file kept on the server is represented by $_FILES[‘user file][‘tmp name’].