PHP - Delete JSON File Data

In this tutorial we will create a Delete JSON File Data using PHP. This code can delete a data from a JSON file with when user click delete button. The code use PHP POST method to call a function that instantly delete a data from JSON object using unset() with an argument of json data and the index position that will be deleted. This is a user-friendly kind of program feel free to modify it. We will be using JSON as a data management to store user data, and it will act as a database storage. It is an open-standard file format that uses human-readable text to transmit data objects into the local server.

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 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 JSON File Data</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form method="POST" action="insert.php">
  19. <div class="form-group">
  20. <label>Firstname</label>
  21. <input type="text" class="form-control" name="firstname" required="required"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Lastname</label>
  25. <input type="text" class="form-control" name="lastname" required="required"/>
  26. </div>
  27. <div class="form-group">
  28. <label>Address</label>
  29. <input type="text" class="form-control" name="address" required="required"/>
  30. </div>
  31. <center><button class="btn btn-primary" name="insert">Insert</button></center>
  32. </form>
  33. </div>
  34. <div class="col-md-8">
  35. <table class="table table-bordered table-striped">
  36. <thead class="alert-info">
  37. <th>Firstname</th>
  38. <th>Lastname</th>
  39. <th>Address</th>
  40. <th>Action</th>
  41. </thead>
  42. <tbody>
  43. <?php
  44. $data = file_get_contents('members.json');
  45. $data = json_decode($data);
  46. $index=0;
  47. foreach($data as $fetch){
  48. ?>
  49. <tr>
  50. <td><?php echo $fetch->firstname?></td>
  51. <td><?php echo $fetch->lastname?></td>
  52. <td><?php echo $fetch->address?></td>
  53. <td><a class="btn btn-danger" href="delete.php?id=<?php echo $index?>">Delete</a></td>
  54. </tr>
  55. <?php
  56. $index++;
  57. }
  58. ?>
  59. </tbody>
  60. </table>
  61. </div>
  62. </div>
  63. </body>
  64. </html>

Creating the Insert Function

This code contains the insert function of the application. This code will store the inputted forms as a JSON object and save it in the JSON file. To make this just copy and write these block of codes below inside the text editor, then save it as insert.php.
  1. <?php
  2. if(isset($_POST['insert'])){
  3. $data = file_get_contents('members.json');
  4. $json = json_decode($data);
  5.  
  6. $array = array(
  7. 'firstname' => $_POST['firstname'],
  8. 'lastname' => $_POST['lastname'],
  9. 'address' => $_POST['address']
  10. );
  11.  
  12. $json[] = $array;
  13.  
  14. $json = json_encode($json, JSON_PRETTY_PRINT);
  15. file_put_contents('members.json', $json);
  16. header('location:index.php');
  17. }
  18.  
  19.  
  20. ?>

Creating the Main Function

This code contains the main function of the application. This code will delete the JSON object from a JSON file 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 shown below. members.json
  1. [
  2. {
  3. "firstname": "John",
  4. "lastname": "Smith",
  5. "address": "New York"
  6. },
  7. {
  8. "firstname": "Claire",
  9. "lastname": "Temple",
  10. "address": "Racoon City"
  11. },
  12. {
  13. "firstname": "Michael",
  14. "lastname": "Leonard",
  15. "address": "Japan"
  16. }
  17. ]
delete.php
  1. <?php
  2.  
  3. $id = $_GET['id'];
  4.  
  5. $data = file_get_contents('members.json');
  6. $json = json_decode($data);
  7.  
  8. unset($json[$id]);
  9.  
  10. $json = json_encode($json, JSON_PRETTY_PRINT);
  11. file_put_contents('members.json', $json);
  12.  
  13. header('location: index.php');
  14. ?>
There you have it we successfully created Delete JSON File Data 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