I am trying to process xml server side and it would seem that the DOM parser does not recognise CDATA.
my parser looks like this...
$xmldoc = domxml_open_file("test.xml");
$xsldoc = domxml_xslt_stylesheet_file("test.xsl");
$result = $xsldoc->process($xmldoc);
print $xsldoc->result_dump_mem($result);
can anybody help me parse that CDATA?
thanks in advance.