stupid problem, but still a problem

wxdqz

New Member
Hi everyone,
I am VERY new to the whole XML thing. I have read through pages and pages of information about it, but still have not found the solution to my, seemingly simple, problem, so I am hoping someone can help.

I have been working on a local theaters website, and they recently updated their registers to create/update a XML sheet to contain up-to-date showtimes. I followed the tuorial on here (displaing the CD artist & titles) but my problem is I need to access information in the subchild (or is it sub-children then?) here is the code I am using

<xml id="showtimes" src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.readyticket.net/webticket/htmlshowtimes/45638/showtimes.xml"></xml>

<table border="1" datasrc="#showtimes">
<tr>
<td><span datafld="name"></span></td>
<td><span datafld="time"></span></td>
</tr>
</table>

but I cannot seem the get the name and time to show up. The tree of the XML file is

- <rtnshowtime>
<theatreid>45638</theatreid>
- <filmtitle>
<name>DA VINCI CODE</name>
<shortname>THE DA VINCI CODE</shortname>
<rating>PG13</rating>
<length>155</length>
<website />
- <show>
<screen>2</screen>
<date>05252006</date>
<time>1145</time>
<soldout>0</soldout>
<salelink>https://www.readyticket.net/webticket/webticket2.asp? WCI=BuyTicket&WCE=THE+DA+VINCI+CODE,052520061145,2,45638,PG13</salelink>
</show>

what do I need to do to get past the <theatreid> and into the showtimes? Thanks!
 
Back
Top