-2

I am trying to update the XML file with the help of php. I am not able to find out, how to update the xml file using php. I created two input box, in which i am passing the value with form element.

<?xml version="1.0" encoding="UTF-8"?>
<inventors>
 <person>
 <name>anie</name>
 <comment>good</comment>
 </person>
</inventors>    

And here is my php code

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
 <?php
 $xml = new DOMDocument('1.0', 'utf-8');
 $xml->formatOutput = true; 
 $xml->preserveWhiteSpace = false;
 $xml->load('sample.xml');

 //Get item Element
 $element = $xml->getElementsByTagName('person')->item(0);  

 //Load child elements
 $name = $element->getElementsByTagName('name')->item(0);
 $comment = $element->getElementsByTagName('comment')->item(0) ;

 //Replace old elements with new
 $element->replaceChild($name, $name);
 $element->replaceChild($comment, $comment);
 ?>

 <?php
 if (isset($_POST['submit']))
 {
$name->nodeValue = $_POST['namanya'];
$comment->nodeValue = $_POST['commentnya'];
htmlentities($xml->save('ak.xml'));

 }

 ?>

 <form method="POST" action=''>
  name <input type="text-name" value="<?php echo $name->nodeValue  ?>" name="namanya" />
comment  <input type="text-comment" value="<?php echo $comment->nodeValue  ?>"  name="commentnya"/>
 <input name="submit" type="submit" />
 </form>
</body>
</html>
Teemu
  • 22,918
  • 7
  • 53
  • 106
ajay kumar
  • 93
  • 1
  • 1
  • 11

1 Answers1

1

Right now your are trying to mix view and model.

You need to specify form's action:

<form method="POST" action="person.php">
  name <input type="text-name" value="" name="namanya" />
  comment  <input type="text-comment" value=""  name="commentnya"/>
<input name="submit" type="submit" />

And in your pearson.php do the change, something like:

if (isset($_POST['submit'])) {
    $xml = new DOMDocument('1.0', 'utf-8');
    $xml->formatOutput = true; 
    $xml->preserveWhiteSpace = false;
    $xml->load('sample.xml');

    $element = $xml->getElementsByTagName('person')->item(0);  
    $element->getElementsByTagName('name')->item(0)->nodeValue = $_POST['namanya'];
    $element->getElementsByTagName('comment')->item(0)->nodeValue = $_POST['commentnya'];

    $xml->save('sample.xml'); // You have ak.xml here, but you wanted to update existing
}

If you need a new file, then don't replace some sample - just create a new XML structure.

freeek
  • 985
  • 7
  • 22