Hi, I have the following XML file:
<ITEM>
<IMAGE>images/0.jpg</IMAGE>
<CONTENT>pages</CONTENT>
</ITEM>
and I am displaying the xml items using the following html:
<table id="s_results" datasrc="#xmldso" width="100%" border="0"><tr onclick="large_display(this)" align="left">
<td><span datafld="CONTENT"></span>
<br>
<span datafld="IMAGE"></span></td>
</tr><tr><td></td></tr></table>
Where I show the IMAGE field I need it to display an image with the file located where it is stated in the IMAGE field - I have tried different way but I have not succeeded.
Thanks