XML Help

Discussion in 'Web Development and Programming' started by webkid, Mar 28, 2008.

  1. webkid

    webkid Regular Member

    I am learnign xml right now. So can you guys tell me which xml book that i should buy for an intro to it ? Is there any online tutorial available for it?

    Thanks in advance
     
  2. Steven

    Steven Regular Member

    xml is easy...

    Code:
    <?xml version="1.0" encoding="UTF-8" ?>
    <bookstore>
      <book>
        <author>Bob</author>
        <title>Who is Bob?</title>
        <price>19.95</price>
      </body>
      <book>
        <author>Joe</author>
        <title>Who is Joe?</title>
        <price>25.95</price>
      </body>
      <book>
        <author>Crab</author>
        <title>Who is Crab?</title>
        <price>9.95</price>
      </body>
    </bookstore>
    You don't need to learn XML, you need to learn XSLT.... a stylesheet language and HTML template for XML, which is used with a XSLT processor to convert from XML to HTML....
     
  3. adithya

    adithya Regular Member

  4. nightlinker

    nightlinker Regular Member

    yes visit that site.. it has lots of tutorials that you will find interesting and helpful :D
     

Share This Page