I have a previously generated XML like this:
You might try this; I didn't test it, but the solution comes from using insertBefore instead of appendChild.
$shop = $dom->getElementsByTagName("shop")->item(0); $section = $dom->documentElement->insertBefore($dom->createElement('section'),$shop);