Greetings all
I have the follow example of xml file:
<?xml version="1.0"?>
<store>
<book>
<title>The Fall</title>
<authorName>Wayne</authorname>
</book>
<book>
<title>Mysterious Ways</title>
<authorName>Stephen Gerard</authorname>
</book>
<book>
<title>Inside XSLT</title>
<authorName>David Ross</authorname>
</book>
<book>
<title>Legends of Olf the Wizard </title>
<authorName>P.Jerry</authorname>
</book>
</store>
..the question is, how can i use the XSL to output only the contents (that is, the title and authorname) for book titles Mysterious Ways and Inside XSL, without display the first and the last book titles in the XML file? Is this possible? Thanks in advance.