PHP - Delete Uploaded File Using MySQLi

In this tutorial we will create a Delete Uploaded File using MySQLi. This code will delete a file form local database server when the user click the delete button. The code use MySQLi DELETE query to delete the existing file in the database that base on the given file id, and also remove a file that is stored in the file directory instantly using unlink() by assigning the file location as an argument. This a user-friendly program feel free to modify and use it to your system. We will be using PHP as a scripting language that interepret in the webserver such as xamp, wamp, etc. It is widely use by modern website application to handle and protect user confidential information.

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 jquery that i used in this tutorial https://jquery.com/. Lastly, 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_delete_upload, after that click Import then locate the database file inside the folder of the application then click ok. tut1

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_delete_upload');
  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 - Delete Uploaded File Using MySQLi</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>File Name</th>
  30. <th>File Location</th>
  31. <th>Action</th>
  32. </tr>
  33. <thead>
  34. <tbody>
  35. <?php
  36. require 'conn.php';
  37. $query=mysqli_query($conn, "SELECT * FROM `file`") or die(mysqli_error());
  38. while($fetch=mysqli_fetch_array($query)){
  39. ?>
  40. <tr>
  41. <td><?php echo $fetch['filename']?></td>
  42. <td><?php echo $fetch['location']?></td>
  43. <td><a href="delete.php?file_id=<?php echo $fetch['file_id']?>" class="btn btn-danger"><span class="glyphicon glyphicon-trash"></span> Delete</a></td>
  44. </tr>
  45. <?php
  46. }
  47. ?>
  48. </tbody>
  49. </table>
  50. </div>
  51. </div>
  52. <script src="js/jquery-3.2.1.min.js"></script>
  53. <script src="js/bootstrap.js"></script>
  54. </body>
  55. </html>

Creating Upload Query

This code contains the upload query of the application. This code will upload the file to the MySQLi database server. To do that just copy and write this 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 delete a file in the database when the button is clicked. To make this just copy and write these block of codes below inside the text editor, then save it as delete.php
  1. <?php
  2. require_once 'conn.php';
  3.  
  4. if($_REQUEST['file_id']){
  5. $file_id=$_REQUEST['file_id'];
  6.  
  7. $query=mysqli_query($conn, "SELECT * FROM `file` WHERE `file_id`='$file_id'") or die(mysqli_error());
  8. $fetch=mysqli_fetch_array($query);
  9.  
  10. $location=$fetch['location'];
  11.  
  12.  
  13. if(unlink($location)){
  14. mysqli_query($conn, "DELETE FROM `file` WHERE `file_id`='$file_id'") or die(mysqli_error());
  15.  
  16. header('location: index.php');
  17. }
  18.  
  19. }
  20.  
  21. ?>
There you have it we successfully created Delete Uploaded File using MySQLi. 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