PHP - Simple Import JSON File Using PDO

In this tutorial we will create a Simple Import JSON File using PDO. This code can import JSON file to the database server with PDO query. The code use a json_decode(); to break down the json format into a readable PHP array, then it will upload the data via for() loop to insert the data row by row to the database server. This is a user-friendly kind of program, feel free to modify it. We will be using PDO as a query scripting it an acronym for PHP Data Objects. It is a lean, clean, and consistent way to access databases. This means developers can write portable code much easier.

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_import, 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 PDO( 'mysql:host=localhost;dbname=db_import', 'root', '');
  3. if(!$conn){
  4. die("Fatal Error: Connection Failed!");
  5. }
  6. ?>

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 - Simple Import JSON File Using PDO</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-5">
  18. <form method="POST" action="upload.php" enctype="multipart/form-data">
  19. <div class="form-group">
  20. <input type="file" name="filename" class="form-control"/>
  21. </div>
  22. <div class="form-group">
  23. <button name="upload" class="btn btn-primary form-control"><span class="glyphicon glyphicon-upload"></span> Upload</button>
  24. </div>
  25. </form>
  26. </div>
  27. <div class="col-md-7">
  28. <table class="table table-bordered">
  29. <thead class="alert-info">
  30. <tr>
  31. <th>Firstname</th>
  32. <th>Lastname</th>
  33. <th>Gender</th>
  34. <th>Address</th>
  35. </tr>
  36. </thead>
  37. <tbody>
  38. <?php
  39. require 'conn.php';
  40. $query = $conn->prepare("SELECT * FROM `member`");
  41. $query->execute();
  42. while($fetch = $query->fetch()){
  43. ?>
  44. <tr>
  45. <td><?php echo $fetch['firstname']?></td>
  46. <td><?php echo $fetch['lastname']?></td>
  47. <td><?php echo $fetch['gender']?></td>
  48. <td><?php echo $fetch['address']?></td>
  49. </tr>
  50. <?php
  51. }
  52. ?>
  53. </tbody>
  54. </table>
  55. </div>
  56. </div>
  57. </body>
  58. </html>

Creating the Main Function

This code contains the main function of the application. This code will import the json file when the button is clicked. To do this just kindly write these block of codes inside the text editor, then save it as upload.php.
  1. <?php
  2. require 'conn.php';
  3.  
  4. if(ISSET($_POST['upload'])){
  5. $file = explode(".", $_FILES['filename']['name']);
  6. $ext = end($file);
  7.  
  8. if($ext == "json"){
  9. $data = file_get_contents($_FILES['filename']['tmp_name']);
  10. $array = json_decode($data, true);
  11. try{
  12. foreach($array as $row){
  13. $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  14. $sql = "INSERT INTO `member` (`firstname`, `lastname`, `gender`, `address`) VALUES ('$row[firstname]', '$row[lastname]', '$row[gender]', '$row[address]')";
  15. $conn->exec($sql);
  16. }
  17. }catch(PDOException $e){
  18. echo $e->getMessage();
  19. }
  20.  
  21. $conn = null;
  22.  
  23. header("location: index.php");
  24. }else{
  25. echo "<script>alert('Only JSON file is available')</script>";
  26. echo "<script>window.location = 'index.php'</script>";
  27. }
  28. }
  29.  
  30.  
  31. ?>
There you have it we successfully created a Simple Import JSON File using PDO. 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