Specific Node

kahlua001

Well-known member
Joined
Dec 15, 2003
Messages
507
Location
los angeles
Say I have the follow xml. How would i get to the value of flight > depart > gate node? Thanks
Code:
<flight>
  <flightid id="22">
     <result>
       <resultcode>0</resultcode>
     </result>
     <depart>
        <date>2003-02-15</date>
        <time>11:00:00</time>
        <gate>6B</gate>
     </depart>
   </flightid>
</flight>
 
Back
Top