Skip to content
Advertisement

how to upload all images from a folder

trying to upload all images from a folder
destination folder on server side is test
destination format for images is uniqid().jpg

problem – seems resulting array on server side is empty

JavaScript

upload.php

JavaScript

Advertisement

Answer

You are passing a FileList object fd.append which is incorrect you have to loop through the list and add each file individually.

JavaScript

You’re using the array of files incorrect, see here

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement