I had a long look through this forum and tried the various examples people had supplied for other peoples problems, but I couldn't figure out how to tailor them to my own.
Its a simple cinema search for local cinemas. The idea being that each cinema will have a different XSL with the cinema venueID hardcoded in, but the titles/times can be updated dynamically by a third party. There's also a venueList element with the venueID, but I didn't include this as its not necessary.
This is a simplified version of my xml:
<listing>
<titleList>
<title titleID="someID">
<titleName>Land Of the Dead</titleName>
</title>
<title... etc etc
</titleList>
<eventList>
<event titleID="txsahara" venueID="vxromste">
<originalTimes>Progs 11.15am 2.15pm 5.15pm</originalTimes>
</event>
<event... etc etc
</eventList>
</listing>
My problem is this. The film name is not included in the showtimes (eventList), only in the film info (titleList). I don't know/understand the code needed to link the two by the titleID, so it shows the corresponding title to each set of filmtimes.
Changing the xml is not possible as it comes from an external source who want a lot of money for customisation.
Thanks in advance to anyone that can assist me.
Its a simple cinema search for local cinemas. The idea being that each cinema will have a different XSL with the cinema venueID hardcoded in, but the titles/times can be updated dynamically by a third party. There's also a venueList element with the venueID, but I didn't include this as its not necessary.
This is a simplified version of my xml:
<listing>
<titleList>
<title titleID="someID">
<titleName>Land Of the Dead</titleName>
</title>
<title... etc etc
</titleList>
<eventList>
<event titleID="txsahara" venueID="vxromste">
<originalTimes>Progs 11.15am 2.15pm 5.15pm</originalTimes>
</event>
<event... etc etc
</eventList>
</listing>
My problem is this. The film name is not included in the showtimes (eventList), only in the film info (titleList). I don't know/understand the code needed to link the two by the titleID, so it shows the corresponding title to each set of filmtimes.
Changing the xml is not possible as it comes from an external source who want a lot of money for customisation.
Thanks in advance to anyone that can assist me.