i am currently trying to parse an xml file.

I am using regular php parsing functions(not simplexml) with this and it is inside a php5 class.
i am running into is that my parser is skipping tags with no data inside them. I tried using the
xml_parser_set_option($this->strParse, XML_OPTION_SKIP_WHITE, 0)

but no luck, the parser still skips those tags and does not put them into my array.

Thanks in advance.

    Write a Reply...