<?php $xml = <<<XML <desc> These are the <special><best></special> chocolate chip cookies <special><EVER></special> </desc> XML; $sx = new SimpleXMLElement($xml); $dom = dom_import_simplexml($sx); $html = ''; foreach($dom->childNodes as $node) { switch($node->nodeType) { case XML_ELEMENT_NODE: if($node->tagName=='special') $html .= '<em>'.htmlspecialchars($node->textContent).'</em>'; break; case XML_TEXT_NODE: $html .= htmlspecialchars($node->data); break; } } echo trim($html);
You have javascript disabled. You will not be able to edit any code.