PHP : Upload multiple file using dropzone.js with drag and drop features

PHP : Upload multiple file using dropzone.js with drag and drop features

In this PHP Tutorial, I will tell you how to upload multiple files using dropzone.js plugin with drag and drop features.

It's very easy to upload files to the server with PHP script.

You will need a HTML form with PHP script to allow user to upload files to the server.

In PHP, There is a global PHP variable $_FILES that keeps all the information related to uploaded files.

Basically files are stored into a temporary directory and then you use PHP script to move files to target destination.

With dropzone.js, You can see the nice progress bar while uploading files to server.

You need to have a simple form element with the class "dropzone" to use dropzone features.

For this example :

  • Create a folder "uploads" to save all uploaded files.
  • Create a file "index.php" for form element.
  • Create a file "upload.php" to handle backend file upload process.
Step 1 : Create File "index.php" to upload file

First we will create a file "index.php" with simple HTML form to upload file.

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Laravel: upload multiple file using dropzone.js</title>
  8. <link href="http://demo.expertphp.in/css/dropzone.css" rel="stylesheet">
  9. <script src="http://demo.expertphp.in/js/dropzone.js"></script>
  10. </head>
  11. <body>
  12. <h3>PHP : Upload multiple file using dropzone.js with drag and drop features</h3>
  13. <form action="upload.php" class="dropzone">
  14. </form>
  15. </body>
  16. </html>
Step 2: Create file "upload.php" to process the uploaded file

Now in this step, We will create a upload.php to process the uploaded files.

  1. <?php
  2. $targetDir = 'uploads/';
  3. if (!empty($_FILES)) {
  4. $targetFile = $targetDir.time().'-'. $_FILES['file']['name'];
  5. move_uploaded_file($_FILES['file']['tmp_name'],$targetFile);
  6. }
  7. ?>

Laravel 5 - Multiple Images Uploading with drag and drop using dropzone.js example

Phone: (+91) 8800417876
Noida, 201301