Hi , I've this
XML file with nested nodes :
Code:
<?
xml version="1.0" encoding="utf-8"?>
<output>
<gen_date_tot>
<Date>2010-10-06</Date>
<total_entries>1</total_entries>
</gen_date_tot>
<entries>
<entry>
<
url><![CDATA[http://www.mywebsite.com]]></
url>
<log_id>1</log_id>
<log_detail_url>http://www.myweb.com/log_detail.php?log_id=1</log_detail_url>
<details>
<detail>
<ip_address>00.000.00.00</ip_address>
<sub_block>00.000.000.0</sub_block>
<Tft>lanco</tft>
<detail_time>05:00:00</detail_time>
</detail>
</details>
<submission>
<submission_date_time>2010-10-06Tm06:05:00</submission_date_time>
</submission>
<verification>
<verified>yes</verified>
<verification_date_time>2010-10-06Tm10:03:00</verification_date_time>
</verification>
<status>
<Done>yes</Done>
</status>
<target>Bug_01</target>
</entry>
</entries>
</output>
Please how it's possible to parse it , I really tried but i could not reach all * nested * sub nodes .
any sample code please !