Start looping from fixed data set
Please look below xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="Template_Appendix.xsl"?>
<learningBECContent id="unit_7_pp" outputclass="lesson">
<learningBECContentbody>
<section>
<title>AAA</title>
<Designation>SE</Designation>
</section>
<section>
<title>BBB</title>
<Designation>SSE</Designation>
</section>
<section>
<title>CCC</title>
<Designation>JSE</Designation>
</section>
</learningBECContentbody>
</learningBECContent>
I want to start displaying these data into HTML where I found <title>BBB</title> inside <Section>, hence I should be getting BBB & CC only. how can i get this data using xslt
|