2
Hello, I have a web app where I need to upload multiple photos at the same time, On the pc goes smoothly but on the mobile I can not select multiple photos. Can someone help me ?
2
Hello, I have a web app where I need to upload multiple photos at the same time, On the pc goes smoothly but on the mobile I can not select multiple photos. Can someone help me ?
Browser other questions tagged php html mobile file-upload multiple-file-upload
You are not signed in. Login or sign up in order to post.
uploading photos or solving the problem? to solve the problem you will need to put some information, such as the HTML form, which server is... etc
– Michel Simões
Well I’ll try to be clear, I need a form that upload several photos at the same time, such form, I already have and works when I do not use via mobile.
– Felipe Candido
<form action="database-prd.php" method='post' enctype="Multipart/form-data"> <div class="form-group"> <input type="file" name="photo[]" class="form-control" Multiple> </form> basically is the form that I use and works if using a PC or notebook; Now if I go on a mobile phone I can’t select more than one photo at a time
– Felipe Candido