Hi,
I am trying to work with an existing XML parser built in PHP using the expat functions that was posted at:
http://www.wirelessdevnet.com/channels/wap/features/xmlcast_php.html
It parses an xml file and builds an html page with the content. My problem is that I can't use it to process xml that contains html tags within it.
I have tried using html entities for the less than and greater than symbols so that it looks like this:
<description><a href="http://www.google.com">click here</a></description>
and I even tried the advice of a site that suggested converting the ampersand itself:
<description>&lt;a href="http://www.google.com"&gt;click here</a&gt;</description>
When the parser works through the code it won't display the code properly. It will show the "<" tag and then insert a number of lines instead of parsing the HTML. I am shooting for the functionality that publish.curry.com provides for RSS feeds. I have tried my XML file there and the HTML is parsed properly when it is displayed as a channel in HTML.
Any ideas?