1 2 3 4 5 6 7 8 9 10 11 |
$dom = new DOMDocument('1.0', 'utf-8'); $element = $dom->createElement('test', 'This is the root element!'); // We insert the new element as root (child of the document) $dom->appendChild($element); header("Content-type: text/xml"); echo $dom->saveXML(); |