General discussion
Thread display: Collapse - |
All Comments
Start or search
Create a new discussion
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
Need to parse XML Tag element in URL format.
<entry>
<http://abcd.xyz.com/1234>
<subject> Page 1</subject>
<http://abcd.xyz.com/3456>
< subject> Page2</subject>
</entry>
When I am parsing such files using XML Simple I am getting out put with only URL tags element. I am also looking for values of its child element subject with it.
Required out put
http://abcd.xyz.com/1234 have subject value Page1
http://abcd.xyz.com/3456 have subject value Page2
Its failing to move further after URL tags under entry root element.
Any suggestions and Help?