7
votes
PHP simplexml problem
When you load the XML file, you'll need to handle the CDATA.. This example works:
<?php
$xml = simplexml_load_file('file.xml', NULL, LIBXML_NOCDATA);
$description = $xml->xpa …
