Say I have an XML file with the following tag...
<pic> flower.jpg </pic>
I can transform my XML document into a HTML file using XSLT. However, my problem is HOW to output the actual image! All that displays in the browser is "flower.jpg", but obviously I want to see the actual picture!
What XSL code do I need so I can extract an image from every tag in my XML!?
Do I need to change my XML as well to do this? All the images are in a local folder!
I was told this could be done with the element in XSLT (linking to some "src" in the XML?). Is this possible?
Please help. Thank you. Edited...