Hi,
I have xml like this
<TIP>
<ROW>
<amount> </amount>
<date></date>
</ROW>
<ROW>
<amount> </amount>
<date></date>
</ROW>
</TIP>
and I want to transform it to another xml from xsl by <xsl:for-each>
<xsl:variable name="all" select="./TIP" />
<xsl:for-each select="$all" >
</xsl:for-each>
the $all gives me array but I want to have value of an array how can I do it?
Thanks