satellite03
IS-IT--Management
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book>
<title lang="eng">Harry Potter</title>
<price>29.99</price>
</book>
<book>
<title lang="eng">Learning XML</title>
<price>39.95</price>
</book>
</bookstore>
what are the meaning of XPath axis like
child::book -->Selects all book nodes that are children of the current node
means ? according to this example what would be the output ?......this "child" keyword is painfull!!!
attribute::lang-->Selects the lang attribute of the current node
means ? according to this example what would be the output ?