How to display xml response already formatted in html (IE won't show anything after the xml table)
If you visit this page in IE you'll see that nothing displays after the chart: http://www.ratecatcher.com/prototype.htm
Here is the main php code:
$xml = file_get_contents($request); echo html_entity_decode($xml);
Then the html that is giving me problems:
the user in IE won't see anything after this.
Is there a better way to display the html than html_entity_decode? I've heard about simplexml but I don't know if it works with html.
Thanks for helping!