<?php
$dom = new DOMDocument('1.0', 'iso-8859-1');
$juur=$dom->createElement("inimene");
$dom->appendChild($juur);
$eesnimi=$juur->appendChild($dom->createElement("eesnimi"));
$eesnimi->appendChild($dom->createTextNode("Juku"));
$perenimi=$juur->appendChild($dom->createElement("perenimi"));
$perenimi->appendChild($dom->createTextNode("Juurikas"));
$tekst=$dom->saveXML();
echo $tekst;
?>