I would appreciate any help, in providing a workable nested solution for the following type of XML structure.
<Info Main>
<Image List>
<Image>
<Image>
<Name List>
<Name>
<Name>
<Name>
<Name>
</Info Main>
<Info Main>
</Info Main>
Where the Info Main is the top structure containing collections of images and names. I have no problem in looping the Info Main top structure as per
<cfloop index="i" from="1" to="#arrayLen(Info_Main_Array)#"> etc,
but I can't seem to work out how to connect the sub-lists of images and names.
Any help would be much appreciated.
<Info Main>
<Image List>
<Image>
<Image>
<Name List>
<Name>
<Name>
<Name>
<Name>
</Info Main>
<Info Main>
</Info Main>
Where the Info Main is the top structure containing collections of images and names. I have no problem in looping the Info Main top structure as per
<cfloop index="i" from="1" to="#arrayLen(Info_Main_Array)#"> etc,
but I can't seem to work out how to connect the sub-lists of images and names.
Any help would be much appreciated.