• We just launched and are currently in beta. Join us as we build and grow the community.

PHP - Upload JSON Object To PDO

saeed_ardebili

Gig Platform Expert
S Rep
0
0
0
Rep
0
S Vouches
0
0
0
Vouches
0
Posts
68
Likes
190
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 500 XP
In this tutorial we will create a Upload JSON Object To PDO using PHP. This code can upload JSON object to the database server using PDO query. The code use a json_decode(); to break down the json format into a readable array object, then it will upload the data by breaking down with for() loop in order 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_json_pdo, after that click Import then locate the database file inside the folder of the application then click ok.
2019-10-23_22_46_08-localhost_127.0.0.1_db_json_pdo_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

    PDO(

    'mysql:host=localhost;dbname=db_json_pdo'

    ,

    '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 - Upload JSON Object To PDO</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-8">
  18. <table class="table table-bordered">
  19. <thead class="alert-info">
  20. <tr>
  21. <th>Firstname</th>
  22. <th>Lastname</th>
  23. <th>Address</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <?php
  28. require

    'conn.php'

    ;
  29. $query

    =

    $conn

    ->

    prepare

    (

    "SELECT * FROM `member`"

    )

    ;
  30. $query

    ->

    execute

    (

    )

    ;
  31. while

    (

    $fetch

    =

    $query

    ->

    fetch

    (

    )

    )

    {
  32. ?>
  33. <tr>
  34. <td><?php

    echo

    $fetch

    [

    'firstname'

    ]

    ?>

    </td>
  35. <td><?php

    echo

    $fetch

    [

    'lastname'

    ]

    ?>

    </td>
  36. <td><?php

    echo

    $fetch

    [

    'address'

    ]

    ?>

    </td>
  37. </tr>
  38. <?php
  39. }
  40. ?>
  41. </tbody>
  42. </table>
  43. </div>
  44. <div class="col-md-4">
  45. <form method="POST" action="upload.php" enctype="multipart/form-data">
  46. <input type="file" name="filename"/>
  47. <br />
  48. <button name="upload" class="btn btn-primary"><span class="glyphicon glyphicon-upload"></span> Upload</button>
  49. </form>
  50. </div>
  51. </div>
  52. </body>
  53. </html>

Creating the Main Function

This code contains the main function of the application. This code will upload the json object 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. if

    (

    ISSET

    (

    $_POST

    [

    'upload'

    ]

    )

    )

    {
  4. $file

    =

    explode

    (

    "."

    ,

    $_FILES

    [

    'filename'

    ]

    [

    'name'

    ]

    )

    ;
  5. $ext

    =

    end

    (

    $file

    )

    ;

  6. if

    (

    $ext

    ==

    "json"

    )

    {
  7. $data

    =

    file_get_contents

    (

    $_FILES

    [

    'filename'

    ]

    [

    'tmp_name'

    ]

    )

    ;
  8. $array

    =

    json_decode

    (

    $data

    ,

    true

    )

    ;
  9. try{
  10. foreach

    (

    $array

    as

    $row

    )

    {
  11. $conn

    ->

    setAttribute

    (

    PDO::

    ATTR_ERRMODE

    ,

    PDO::

    ERRMODE_EXCEPTION

    )

    ;
  12. $sql

    =

    "INSERT INTO `member` (`firstname`, `lastname`, `address`) VALUES ('$row[firstname]

    ', '$row[lastname]

    ', '$row[address]

    ')"

    ;
  13. $conn

    ->

    exec

    (

    $sql

    )

    ;
  14. }
  15. }

    catch(

    PDOException $e

    )

    {
  16. echo

    $e

    ->

    getMessage

    (

    )

    ;
  17. }

  18. $conn

    =

    null

    ;

  19. echo

    "<script>alert('Successfully uploaded!')</script>"

    ;
  20. echo

    "<script>window.location = 'index.php'</script>"

    ;
  21. }

    else

    {
  22. echo

    "<script>alert('Only JSON file is available')</script>"

    ;
  23. echo

    "<script>window.location = 'index.php'</script>"

    ;
  24. }
  25. }


  26. ?>

There you have it we successfully created a Upload JSON Object To PDO 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!


Download
You must upgrade your account or reply in the thread to view the hidden content.
 

452,496

332,845

332,853

Top