PHP XML inserting element after (or before) another element

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);

Leave a Comment