InterviewSolution
| 1. |
How To Get The Uploaded File Information In The Receiving Script? |
|
Answer» Once the Web server received the uploaded file, it will call the PHP script SPECIFIED in the form action attribute to process them. This receiving PHP script can get the uploaded file information through the predefined array called $_FILES. Uploaded file information is organized in $_FILES as a two-dimensional array as:
Once the Web server received the uploaded file, it will call the PHP script specified in the form action attribute to process them. This receiving PHP script can get the uploaded file information through the predefined array called $_FILES. Uploaded file information is organized in $_FILES as a two-dimensional array as: |
|