xml newbie: Linking to a particular child in your xml file to use in a html anchor.
I mean I want to link to it.
Here is how I want to use my xml:
<slideshow>
<client id="1">
<image src="images/slide_webVedanta.png" desc="description goes here" header="Vedanta" role="Interface Developer"/>
<image src="images/slide_ekong1.png" desc="description goes here" role="Designer, Developer"/>
<image src="images/slide_Delphi1.png" desc="description goes here" header="Sam Ekong, Author" role="Designer, Developer"/>
</client>
<client id="2">
<image src="images/slide_webVedanta.png" desc="description goes here" header="Vedanta" role="Interface Developer"/>
<image src="images/slide_ekong1.png" desc="description goes here" role="Designer, Developer"/>
<image src="images/slide_Delphi1.png" desc="description goes here" header="Sam Ekong, Author" role="Designer, Developer"/>
</client>
</slideshow>
I want to link to the different children using the attribute within the link below, so that it loops through each clients images separately when the link is clicked.
<a href="slideshow.swf?file=slideshow-data.xml" rel="type:swf" id="print1" class="print" title="D & G Automotive Services"><img src="images/pf_sm_dng.png" alt="" border="0" class="mbImage" /></a>
Would it be slideshow-data.xml, 2 or something like that?
Thanks in advance for the help.