I am using Yii2 and also Dropzone (from https://github.com/perminder-klair/yii2-dropzone) and I have placed the control on a Form.
Now I am facing difficulty in getiing the file names of the uploaded files.
Can you help me on how do I check for array of uploaded files so that I can save that array to a filed in database.
*** Edit *******
What I am doing? I have a Form with different Controls and have added the dropzone control(widget) to get images from the form submitter.
Whats the issue? Now the dropzone control is working fine. As soon as images are added to it it uploads the images to the designated folder.
But real issue comes when I need to save the Form Data with Url of Images. I am getting the form data without any isseue but no $_FILES is available as files have already uploaded. So how do I get their name while saving form data.