InterviewSolution
Saved Bookmarks
| 1. |
When you’re uploading files you need to set the enctype of the form to __________(a) text(b) text/file(c) multipart/form-data(d) multimedia/form-dataI had been asked this question in an internship interview.My query is from Image Uploading Ability topic in chapter Objects and Databases in PHP of PHP |
|
Answer» RIGHT answer is (C) multipart/FORM-data Easy explanation: Set the enctype of the form to multipart/form-data, which can ACCEPT files and standard form VALUES. |
|