S
Shmuel
If i have like this:
<currencies>
<currency name="us">
<rate>6.7890</rate>
</currency>
<currency name="eur">
<rate>7.45656</rate>
</currency>
</currencies>
and then if Im looping throug currencies and I am currently in eur and
if I want for example to add it to the value of "us", so how do I do it?
To be more specific: eurus = 7.45656 + 6.7890
I loop through the currencies in XSL with <xsl:for each> and so on.
<currencies>
<currency name="us">
<rate>6.7890</rate>
</currency>
<currency name="eur">
<rate>7.45656</rate>
</currency>
</currencies>
and then if Im looping throug currencies and I am currently in eur and
if I want for example to add it to the value of "us", so how do I do it?
To be more specific: eurus = 7.45656 + 6.7890
I loop through the currencies in XSL with <xsl:for each> and so on.