How can I get the CData of this tag, it shows like this in XML
<Name><![CDATA[John & Mary]]></Name>
This does not work when I include the names in CData
$Staff= new SimpleXMLElement("details.php?staff=$ID", null, true);
foreach($Staff as $Person){
?>
<?php
$Name = $Person->Name;
echo $Name;