InterviewSolution
| 1. |
How can we upload a file in PHP? |
|
Answer» For file upload in PHP make sure that the form USES METHOD="POST" and attribute: enctype="multipart/form-data". It specifies that which content-type to use when submitting the form. Example$target_dir = "upload/"; |
|