PHP - Insert Data To JSON File

In this tutorial we will create a Insert Data To JSON File using PHP. This code can insert data to JSON file when user submit the form input. The code use PHP POST method to call a function that insert the form data as a JSON object to JSON file using file_put_contents(). 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 - Insert Data To JSON File</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. </thead>
  41. <tbody>
  42. <?php
  43. $data = file_get_contents('members.json');
  44. $data = json_decode($data);
  45. foreach($data as $fetch){
  46. ?>
  47. <tr>
  48. <td><?php echo $fetch->firstname?></td>
  49. <td><?php echo $fetch->lastname?></td>
  50. <td><?php echo $fetch->address?></td>
  51. </tr>
  52. <?php
  53. }
  54. ?>
  55. </tbody>
  56. </table>
  57. </div>
  58. </div>
  59. </body>
  60. </html>

Creating the Main Function

This code contains the main function of the application. This code will insert a data to 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. ]
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. ?>
There you have it we successfully created Insert Data To JSON File 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!

Comments

Add new comment