XML Help

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

  1. webkid

    webkid Regular Member

    Joined:
    Mar 26, 2008
    Messages:
    33
    Likes Received:
    0
    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

    Joined:
    Mar 19, 2008
    Messages:
    18
    Likes Received:
    0
    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

    Joined:
    Mar 23, 2008
    Messages:
    82
    Likes Received:
    0
    Location:
    India
  4. nightlinker

    nightlinker Regular Member

    Joined:
    Apr 3, 2008
    Messages:
    248
    Likes Received:
    0
    yes visit that site.. it has lots of tutorials that you will find interesting and helpful :D
     

Share This Page