Re: [PHP] DOMXML Warning

2008-02-13 Thread Richard Lynch
On Wed, February 13, 2008 1:51 am, Miguel J. Jiménez wrote: > Hi, after enabling error reporting with E_ALL I am having this strange > warning while loading a XML: > > Warning: DOMDocument::load() [function.DOMDocument-load]: Extra > content > at the end of the document in [...] > > The code I use

Re: [PHP] DOMXML Warning

2008-02-13 Thread Andrew Ballard
On Feb 13, 2008 1:20 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Feb 13, 2008 2:51 AM, Miguel J. Jiménez > <[EMAIL PROTECTED]> wrote: > > Hi, after enabling error reporting with E_ALL I am having this strange > > warning while loading a XML: > > > > Warning: DOMDocument::load() [function.DOMDo

Re: [PHP] DOMXML Warning

2008-02-13 Thread Daniel Brown
On Feb 13, 2008 2:51 AM, Miguel J. Jiménez <[EMAIL PROTECTED]> wrote: > Hi, after enabling error reporting with E_ALL I am having this strange > warning while loading a XML: > > Warning: DOMDocument::load() [function.DOMDocument-load]: Extra content > at the end of the document in [...] Is the

[PHP] DOMXML Warning

2008-02-12 Thread Miguel J. Jiménez
Hi, after enabling error reporting with E_ALL I am having this strange warning while loading a XML: Warning: DOMDocument::load() [function.DOMDocument-load]: Extra content at the end of the document in [...] The code I use is: $dom = new DOMDocument(); $dom->load("http://example.com/file.xml";);