Pero si ya lo estás haciendo
Código PHP:
Ver original<?php
$xml = <<<XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<playlist>
<cancion>
<titulo>Can't you see me</titulo>
<banda>The Jimi Hendrix Experience</banda>
</cancion>
<cancion>
<titulo>Just like a woman</titulo>
<banda>Bob Dylan</banda>
</cancion>
</playlist>
XML;
$dom = new DOMDocument();
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($xml);
$foo = $dom->createElement('foo');
$foo = $dom->firstChild->appendChild($foo);
$bar = $dom->createElement('bar','bar');
$foo->appendChild($bar);
$candy = $dom->createElement('candy','candy');
$foo->appendChild($candy);
echo $dom->saveXML();