Re: [PHP] Re: Parsing XML

2008-11-28 Thread Ashley Sheridan
On Fri, 2008-11-28 at 13:48 +, Nathan Rixham wrote: > 2008/11/27 Ashley Sheridan <[EMAIL PROTECTED]> > > On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > > On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > > > Ashley Sheridan wrote: >

Re: [PHP] Re: Parsing XML

2008-11-28 Thread Nathan Rixham
2008/11/27 Ashley Sheridan <[EMAIL PROTECTED]> > On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > > On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > > > Ashley Sheridan wrote: > > > > Hi All, > > > > > > > > I've run into a bit of a problem. I need to parse some fairly > detail

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Fri, 2008-11-28 at 01:04 +0100, Maciek Sokolewicz wrote: > Ashley Sheridan wrote: > > On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > >> On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > >>> Ashley Sheridan wrote: > Hi All, > > I've run into a bit of a problem.

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Maciek Sokolewicz
Ashley Sheridan wrote: On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the re

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > > Ashley Sheridan wrote: > > > Hi All, > > > > > > I've run into a bit of a problem. I need to parse some fairly detailed > > > XML files from a remote website. I'm pulling in the

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > Ashley Sheridan wrote: > > Hi All, > > > > I've run into a bit of a problem. I need to parse some fairly detailed > > XML files from a remote website. I'm pulling in the remote XML using > > curl, and that bit is working fine. The smaller X

[PHP] Re: Parsing XML

2008-11-27 Thread Nathan Rixham
Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the remote XML using curl, and that bit is working fine. The smaller XML documents were easy to parse with regular expressions, as I only needed

[PHP] Re: Parsing XML

2008-11-27 Thread Nathan Rixham
Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the remote XML using curl, and that bit is working fine. The smaller XML documents were easy to parse with regular expressions, as I only needed

[PHP] Re: parsing xml the right way

2004-04-02 Thread Justin Patrin
Merlin wrote: Hi there, I think I am parsing xml documents the wrong way. There must be a better way to access the results laterone like objects. For example I would like to search in a free form for a city name inside an xml document and php should return the country name and continent. This is

Re: [PHP] Re: parsing xml the right way

2004-04-02 Thread trlists
On 2 Apr 2004 Aidan Lister wrote: > Wait until you have installed PHP5, then use the simplexml library. I will shortly have the same questions about ways to parse XML, and I can't use PHP 5 -- it's a production environment and the PTB are not going to move to something that is that recently rel

[PHP] Re: parsing xml the right way

2004-04-02 Thread Aidan Lister
Wait until you have installed PHP5, then use the simplexml library. You have not showed us any code, how are we to tell you if you are doing it the right or wrong way? "Merlin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there, > > I think I am parsing xml documents the wrong

[PHP] Re: Parsing XML CDATA errors?

2003-03-31 Thread Lock Ct.
i think it should be line 43 : $person_data[$counter]["description"] .= $data; wish you luck ! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Parsing XML

2001-11-13 Thread Manuel Lemos
Hello, Michael Harris wrote: > > Can anybody tell me if there is a way to build an array or some other > means of collecting the attributes from the Start Element Handler so I > can return them back to my main application? Maybe you would like to try this class that does exactly what you need.