Home Php XML DOM Tutorial



XML DOM Tutorial
Posted on: November 21, 2009 at 12:00 AM
W3C provides a standard called DOM for HTML & XML documents.

XML DOM Tutorial

     

W3C provides a standard called DOM (Document Object Model) for HTML & XML documents. DOM is also used as an interface for accessing and manipulating HTML & XML documents.DOM is a convention for representing and interacting with HTML, XML document objects, it is platform and language independent.

In the example below we create an object called $xml of DOMDocument class, and we access load() and saveXML() functions of it. 

Example

phpDom.php

<?php

$xml=new DOMDocument();

$xml->load("MyFirst.xml");

print $xml->saveXML();

?>

MyFirst.xml

<?xml version="1.0" encoding="ISO-8859-1" ?>
<lang>
<php>
PHP is very easy to learn
</php>
<Java>
Java is the king of open source language
</Java>
</lang>

Output:

PHP is very easy to learn Java is the king of open source language

Related Tags for XML DOM Tutorial:


More Tutorials from this section

Ask Questions?    Discuss: XML DOM Tutorial  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.