Try adding a submit button, method, and enctype to your form.
<form action="upload.php" class="dropzone" id="zone" method="post" enctype="multipart/form-data">
<input type="submit" name="submit" id="submit" /><!-- Submit button -->
</form>
In your dropzonejs form, only those files or files that you want to upload are displayed, but dropzonejs does not upload any of your files to your server, you will need to send the files to your server using javascript on php or server.
I hope this will be helpful to you.
source
share