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
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....
I dunno about the books but i'm currently learning XML via http://www.w3schools.com/xml/default.asp It's nice... ..i hope you will also find it useful...