Skip to content
Advertisement

How to send multiple files in postman ReSTful web service?

I am using ReSTful webservice. I am uploading multiple photos with one function (PHP).

I have used $num_files = count($_FILES['myfile']['name']) to count number of files that are to be uploaded but this always gives 1:

Image

When I print $_FILES['myfile']['name'] or $_FILES it returns last image.

Am I suppose to do any setting to send multiple files at a time?

JavaScript

Advertisement

Answer

I got a solution. I need to make myfile an array like this: myfile[] 🙂

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