Say I have this given XML file:
<root> <node>x</node> <node>y</node> <node>a</node> </root>
And I want the following to be displayed:
ayx
Using something similar to:
<xsl:template match='/'> <xsl:apply-templates select='root/node'/> </xsl:template> <xsl:template match='node'> <xsl:value-of select='.'/> </xsl:template>
Easy!