We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

qrist0ph on 05/13/08


Tagged

xml helloworld


Versions (?)


XML Hello World


Published in: XML 


  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <?xml-stylesheet type="text/xsl" href="test.xsl"?>
  3. <root>
  4. <level0>
  5. <a>1 </a>
  6. <b> 2</b>
  7. <c> 3</c>
  8. <a>5 </a>
  9. <level1>
  10. <l1e>11</l1e>
  11. </level1>
  12. </level0>
  13. <level0>
  14. <a>7 </a>
  15. <b> 7</b>
  16. <b> 2</b>
  17. <c> 3</c>
  18. <a>70 </a>
  19. <level1>
  20. <l1e>44</l1e>
  21. </level1>
  22. </level0>
  23. </root>

Report this snippet 

You need to login to post a comment.