PHP - Download Uploaded Image

In this tutorial we will create a Download Uploaded Image using PHP. This code can download an uploaded image when user click the download button. The code use a PHPSELECT query to fetch the image data that will be downloaded, then use PHP header() by adding some content parameter that meet the standard requirement in order to download the image. We will be using PHP as a scripting language and interpreter that is used primarily on any webserver including xamp, wamp, etc. It is being use to any famous websites and it has a modern technology that can easily be use by the next generation.

Getting Started:

First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP server https://www.apachefriends.org/index.html. And, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating Database

Open your database web server then create a database name in it db_image_download, after that click Import then locate the database file inside the folder of the application then click ok. https://www.sourcecodester.com/sites/default/files/2019-11-06_22_26_50-localhost_127.0.0.1_db_image_download_phpmyadmin_4.8.3.png

Creating the database connection

Open your any kind of text editor(notepad++, etc..). Then just copy/paste the code below then name it conn.php.
  1. <?php
  2.         $conn = new mysqli('localhost', 'root', '', 'db_image_download');
  3.        
  4.         if(!$conn){
  5.                 die("Error: Failed to connect to database");
  6.         }
  7. ?>

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7. <body>
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">PHP - Download Uploaded Image</h3>
  16.                 <hr style="border-top:1px dotted #000;"/>
  17.                 <div class="col-md-4">
  18.                         <form method="POST" action="upload.php" enctype="multipart/form-data">
  19.                                 <div class="form-group">       
  20.                                         <input name="file" type="file" required="required"/>
  21.                                 </div> 
  22.                                 <center><button class="btn btn-primary" name="upload"><span class="glyphicon glyphicon-upload"></span> Upload</button></center>
  23.                         </form>
  24.                 </div>
  25.                 <div class="col-md-8">
  26.                         <table class="table table-bordered">
  27.                                 <thead class="alert-info">
  28.                                         <tr>
  29.                                                 <th>Image Name</th>
  30.                                                 <th>Action</th>
  31.                                         </tr>
  32.                                 <thead>
  33.                                 <tbody>
  34.                                         <?php
  35.                                                 require 'conn.php';
  36.                                                 $query=mysqli_query($conn, "SELECT * FROM `file`") or die(mysqli_error());
  37.                                                 while($fetch=mysqli_fetch_array($query)){
  38.                                         ?>
  39.                                                 <tr>
  40.                                                         <td><?php echo $fetch['image_name']?></td>
  41.                                                         <td><a href="download.php?image=<?php echo $fetch['location']?>">Download</a></td>
  42.                                                 </tr>
  43.                                         <?php
  44.                                                 }
  45.                                                
  46.                                         ?>
  47.                                 </tbody>
  48.                         </table>
  49.                 </div>
  50.         </div>         
  51. </body>
  52. </html>

Creating the Upload Function

This code contains the upload function of the application. This code will store the image data to the database server when the form is submitted. To do this just kindly write these block of codes inside the text editor, then save it as upload.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['upload'])){
  5.                 $file_name = $_FILES['file']['name'];
  6.                 $file_temp = $_FILES['file']['tmp_name'];
  7.                 $file_size = $_FILES['file']['size'];
  8.                
  9.                 $exp = explode(".", $file_name);
  10.                 $ext = end($exp);
  11.                 $file = time();
  12.                 $location = "uploads/".$file.".".$ext;
  13.        
  14.                 if($file_size < 5242880){
  15.                         move_uploaded_file($file_temp, $location);
  16.                         mysqli_query($conn, "INSERT INTO `file` VALUES('', '$file', '$location')") or die(mysqli_error());
  17.                         echo "<script>alert('Successfully uploaded!')</script>";
  18.                         echo "<script>window.location='index.php'</script>";
  19.                 }else{
  20.                         echo "<script>alert('File too large too upload!')</script>";
  21.                         echo "<script>window.location='index.php'</script>";
  22.                 }
  23.         }
  24. ?>

Creating the Main Function

This code contains the main function of the application. This code will download the image when the button is clicked. To do this just kindly write these block of codes inside the text editor, then save it as download.php.
  1. <?php
  2.         if(ISSET($_REQUEST['image'])){
  3.                 $exp=explode("/", $_REQUEST['image']);
  4.                 $image=$exp[1];
  5.                
  6.                 header("Cache-Control: public");
  7.                 header("Content-Description: File Transfer");
  8.                 header("Content-Disposition: attachment; filename=".basename($image));
  9.                 header("Content-Type: application/octet-stream;");
  10.                 header("Content-Transfer-Encoding: binary");
  11.                 readfile("uploads/".$image);
  12.         }
  13. ?>
There you have it we successfully created a Download Uploaded Image using PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment