Re: [PHP-XML-DEV] DTD validation problem

[email protected] ("Mike Phillipson") Thu, 24 Feb 2005 10:13:55 -0600
Newsgroups php.xml.dev
Organization Blue Moon Software
Message-ID <[email protected]>
Thanks for the tip, Rob.  That did the trick!

It never would have occurred to me to try the xml_parse_create_ns() function
because I do not use namespaces in my XML implementation.

Mike

"Rob Richards" <[email protected]> wrote in message
news:[email protected]...
> Try using xml_parser_create_ns when you create your parser. SAX 2 is
> required for that default attributes to work and the only way to enable
> SAX2 support under libxml in the xml extension is to create the parser
> with namespace support.
> Rob