Hi,
I would like to know what's the best way to parse a xml document directly from a url.
My problem is that I need to access a url and get the xml document that gives me, and then parse it in order to get a code.
How would I do this?
thanks in advance
Parse XML from URL PHP4
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
file_get_contents() or similar the page data and call xml_parse() I believe.