PHP - Insert New Entry In XML File

In this tutorial we will create a Insert New Entry In XML File using PHP. This code will dynamically insert an additional entry to xml file when user submit the input form. The code use file_put_contents() function to insert a new data to the xml file by overwriting the existing file. This is a user-friendly kind of program feel free to modify it. We will be using XML as a markup language that defines a set of rules for encoding documents in a format that is both readable in a certain way. It is designed to store and transport data that can be manipulated within 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 New Entry In XML 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" >
  36. <thead class="alert-info">
  37. <tr>
  38. <th>Firstname</th>
  39. <th>Lastname</th>
  40. <th>Address</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44.  
  45. <?php
  46. $xml = simplexml_load_file('member.xml');
  47. foreach($xml->member as $member){
  48. echo '
  49. <tr>
  50. <td>'.$member->firstname.'</td>
  51. <td>'.$member->lastname.'</td>
  52. <td>'.$member->address.'</td>
  53. </tr>
  54. ';
  55. }
  56. ?>
  57. </tbody>
  58. </table>
  59. </div>
  60. </div>
  61. </body>
  62. </html>

Creating the Main Function

This code contains the main function of the application. This code will add a new data in the xml 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. insert.php
  1. <?php
  2. if(ISSET($_POST['insert'])){
  3.  
  4. if(file_exists("member.xml")){
  5. $members = simplexml_load_file('member.xml');
  6. $member = $members->addChild('member');
  7. $member->addChild('firstname', $_POST['firstname']);
  8. $member->addChild('lastname', $_POST['lastname']);
  9. $member->addChild('address', $_POST['address']);
  10. file_put_contents('member.xml', $members->asXML());
  11.  
  12. header('location:index.php');
  13. }
  14. }
  15.  
  16. ?>
member.xml
  1. <?xml version="1.0"?>
  2. <members><member><firstname>John</firstname><lastname>Smith</lastname><address>New York</address></member><member><firstname>Claire </firstname><lastname>Temple</lastname><address>Racoon City</address></member></members>
There you have it we successfully created Insert New Entry In XML 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!

Add new comment