Hi All,

I have the following XML...

<mydata>
<question-id>
<id>1</id>
<id>4</id>
<id>2</id>
</question-id>
<questionire>
<question>
<qid>1</qid>
<desc>one</desc>
</question>
<question>
<qid>2</qid>
<desc>Two</desc>
</question>
<question>
<qid>3</qid>
<desc>Three</desc>
</question>
<question>
<qid>4</qid>
<desc>Four</desc>
</question>
</questionire>
</mydata>

Now, I was to fetch desc for each id the question-id and want to put
in a table. ie for above XML, I want
output like

1 One
4 Four
2 Two

Can any one provide the corresponding XSl.?

Thanks in advance.

Manish