Click to See Complete Forum and Search --> : does xml_parser have some sort of skip mode


wilfordbrimley
08-14-2006, 10:33 AM
I'm parsing xml using xml_parser_create that contains a node with content that is text formatted with html. i'd like to keep the html around, and so would prefer not parsing it...right now i'm reforming html from the parsed data, but was wondering if there was an easier way...i.e can i put the parser into a non-parsing mode until a certain closing tag( end element ) is found..or something along those lines
thanks

bokeh
08-14-2006, 01:30 PM
If you don't want something parsed it needs to be CDATA.

wilfordbrimley
08-15-2006, 09:32 AM
awesome. thanks!