Accessing submitted files in PHP
Submitted files via web form are accessible in PHP via associative array $_FILES.
Key of the array will be filename associated with the submitted data. For example it can be text.txt
Value of the array element will be content of that file.
Comments
Post a Comment