How to Download File using PHP/MySQLi

Language

In my previous tutorial, I've created a Simple File Upload using PHP/MySQLi. As a follow-up, I've created another tutorial on how to create a Simple File Download. Most files can be easily download by clicking their link. However, some files cannot be downloaded by doing so. Thus, I've created this tutorial. This tutorial will not give you a good design, but will give you a good idea about the topic.

Creating our Database

First, we're going to create our database. This contains the location of our files. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "download". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.
  1. CREATE TABLE `file` (
  2. `fileid` INT(11) NOT NULL AUTO_INCREMENT,
  3. `file_location` VARCHAR(150) NOT NULL,
  4. PRIMARY KEY(`fileid`)
  5. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
download

Inserting Data in to our Database

Next step is to insert example data into our database. This will serve as our sample data. 1. Click "dowload" database that we have created earlier. 2. Click SQL and paste the code below.
  1. INSERT INTO `file` (`file_location`) VALUES
  2. ('upload/butterfly.jpeg'),
  3. ('upload/cherry.jpeg'),
  4. ('upload/rose.jpeg');

Creating our Connection

Next step is to create a database connection and save it as "conn.php". This file will serve as our bridge between our form and our database. To create the file, open your HTML code editor and paste the code below after the tag.
  1. <?php
  2.  
  3. //MySQLi Procedural
  4. $conn = mysqli_connect("localhost","root","","download");
  5. if (!$conn) {
  6. die("Connection failed: " . mysqli_connect_error());
  7. }
  8.  
  9. ?>

Creating our File Source

I've included in the file of this tutorial, the folder named "upload" which contains our sample files.

Creating our Table

Next is to create our sample table. This contains the data that we inserted earlier and our download link. We name this as "index.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>How to Download File using PHP/MySQLi</title>
  5. </head>
  6. <body>
  7. <h2>Sample Images</h2>
  8. <table border="1">
  9. <thead>
  10. <th>File Location</th>
  11. <th>Action</th>
  12. </thead>
  13. <tbody>
  14. <?php
  15. include('conn.php');
  16.  
  17. $query=mysqli_query($conn,"select * from file");
  18. while($row=mysqli_fetch_array($query)){
  19. ?>
  20. <tr>
  21. <td><?php echo $row['file_location']; ?></td>
  22. <td><a href="download.php?file=<?php echo urlencode($row['file_location']); ?>">Download</a></td>
  23. </tr>
  24. <?php
  25. }
  26. ?>
  27. </tbody>
  28. </table>
  29. </body>
  30. </html>

Creating our Download Code

Lastly, We create our download code. This code will download the file when user clicks the download link of that file. We name this as "download.php".
  1. <?php
  2.  
  3. $filePath=urldecode($_REQUEST['file']);
  4.  
  5. if(file_exists($filePath)) {
  6. $fileName = basename($filePath);
  7. $fileSize = filesize($filePath);
  8.  
  9. header("Cache-Control: private");
  10. header("Content-Type: application/stream");
  11. header("Content-Length: ".$fileSize);
  12. header("Content-Disposition: attachment; filename=".$fileName);
  13.  
  14. readfile ($filePath);
  15. exit();
  16. }
  17. else {
  18. die('The provided file path is not valid.');
  19. }
  20. ?>

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byKevin Kho (not verified)on Wed, 09/12/2018 - 15:35

sir. What is 'file' for?
  1. $filePath=urldecode($_REQUEST['file']);

Add new comment