How can i select a folder in browse button. I mean, i want to upload a folder or file. So is it possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s all about HTML and has nothing to do with PHP (at least until the data is submitted).
HTML provides no mechanism to select folders for upload.
HTML 5 allows multiple files to be selected. I assume this would be handled in PHP the same way as any other kind of multiple value response would be handled – make sure the name ends in
[]then treat it as an array in$_POST.