preserveWhiteSpace = FALSE; $doc->load('C:\test1.xml'); $dom->formatOutput = TRUE; $date = $doc->createElement('date'); $date->appendChild($doc->createTextNode('ny')); $title = $doc->createElement('title'); $title->appendChild($doc->createTextNode('ny')); $body = $doc->createElement('body'); $body->appendChild($doc->createTextNode('ny')); $message = $doc->createElement('message'); $message->appendChild($date); $message->appendChild($title); $message->appendChild($body); $doc->documentElement->appendChild($message); $doc->save('C:\test2.xml'); echo "OK"; ?>