PHP - Store Data Inputs As XML File

In this tutorial we will create a Store Data Inputs As XML File using PHP. This code wil store html form data as a xml file when the user click the save button. The code use DomDocument to create a xml file, then append all the html form data as a child of the xml parent node. This is a user-friendly kind of program feel free to modify it. We will be using XML as a HTML readable format string in order to utilize php code for appending the data. 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 - Store Data Inputs As XML File</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button type="button" class="btn btn-success" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add member</button>
  18.                 <br /><br />
  19.                 <table class="table table-bordered" >  
  20.                         <thead class="alert-info">
  21.                                 <tr>
  22.                                         <th>Member ID</th>
  23.                                         <th>Firstname</th>
  24.                                         <th>Lastname</th>
  25.                                         <th>Address</th>
  26.                                 </tr>
  27.                         </thead>
  28.                        
  29.                         <tbody>
  30.                        
  31.                                 <?php
  32.                                         $xml = simplexml_load_file('member.xml');
  33.                                         foreach($xml->member as $member){
  34.                                                 echo '
  35.                                                         <tr>
  36.                                                                 <td>'.$member->mem_id.'</td>
  37.                                                                 <td>'.$member->firstname.'</td>
  38.                                                                 <td>'.$member->lastname.'</td>
  39.                                                                 <td>'.$member->address.'</td>
  40.                                                         </tr>
  41.                                                 ';
  42.                                         }
  43.                                 ?>
  44.                         </tbody>
  45.                 </table>
  46.         </div>
  47. <div class="modal fade" id="form_modal" aria-hidden="true">
  48.         <div class="modal-dialog">
  49.                 <div class="modal-content">
  50.                         <form method="POST" action="save_member.php">
  51.                                 <div class="modal-header">
  52.                                         <h3 class="modal-title">Add Member</h3>
  53.                                 </div>
  54.                                 <div class="modal-body">
  55.                                         <div class="col-md-2"></div>
  56.                                         <div class="col-md-8">
  57.                                                 <div class="form-group">
  58.                                                         <label>Member ID</label>
  59.                                                         <input type="text" class="form-control" name="mem_id" required="required"/>
  60.                                                 </div>
  61.                                                 <div class="form-group">
  62.                                                         <label>Firstname</label>
  63.                                                         <input type="text" class="form-control" name="firstname" required="required"/>
  64.                                                 </div>
  65.                                                 <div class="form-group">
  66.                                                         <label>Lastname</label>
  67.                                                         <input type="text" class="form-control" name="lastname" required="required"/>
  68.                                                 </div>
  69.                                                 <div class="form-group">
  70.                                                         <label>Address</label>
  71.                                                         <input type="text" class="form-control" name="address" required="required"/>
  72.                                                 </div>
  73.                                         </div>
  74.                                 </div>
  75.                                 <br style="clear:both;"/>
  76.                                 <div class="modal-footer">
  77.                                         <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  78.                                         <button class="btn btn-primary" name="save"><span class="glyphicon glyphicon-save"></span> Save</button>
  79.                                 </div>
  80.                         </form>
  81.                 </div>
  82.         </div>
  83. </div> 
  84. <script src="js/jquery-3.2.1.min.js"></script> 
  85. <script src="js/bootstrap.js"></script>
  86. </body>
  87. </html>

Creating the Main Function

This code contains the main function of the application. This code will save the data inputs to 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 save_member.php
  1. <?php
  2.         if(ISSET($_POST['save'])){
  3.                
  4.                 if(file_exists("member.xml")){
  5.                         $members = simplexml_load_file('member.xml');
  6.                         $member = $members->addChild('member');
  7.                         $member->addChild('mem_id', $_POST['mem_id']);
  8.                         $member->addChild('firstname', $_POST['firstname']);
  9.                         $member->addChild('lastname', $_POST['lastname']);
  10.                         $member->addChild('address', $_POST['address']);
  11.                         file_put_contents('member.xml', $members->asXML());
  12.                        
  13.                 }else{
  14.                         $xml = new DomDocument("1.0", "UTF-8");
  15.                
  16.                         $members= $xml->createElement("members");
  17.                         $members = $xml->appendChild($members);
  18.                        
  19.                
  20.                         $member = $xml->createElement("member");
  21.                         $member = $members->appendChild($member);
  22.                        
  23.                         $mem_id = $xml->createElement("mem_id", $_POST['mem_id']);
  24.                         $mem_id = $member->appendChild($mem_id);
  25.                        
  26.                         $firstname = $xml->createElement("firstname", $_POST['firstname']);
  27.                         $firstname = $member->appendChild($firstname);
  28.                                
  29.                         $lastname = $xml->createElement("lastname", $_POST['lastname']);
  30.                         $lastname = $member->appendChild($lastname);
  31.                        
  32.                         $address = $xml->createElement("address", $_POST['address']);
  33.                         $address = $member->appendChild($address);
  34.                                
  35.                
  36.                         $xml->FormatOutput = true;
  37.                         $string_value = $xml->saveXML();
  38.                         $xml->save("member.xml");
  39.                 }
  40.                
  41.                 header("location:index.php");
  42.         }
  43.  
  44. ?>
There you have it we successfully created Store Data Inputs As 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