Xml add element node using PHP
- by user560411
Hello I would like to add an element node in my entire XML file using PHP. I can not get it right and I add it below root.
Please share me a clean code so that I understand how it works.. Thank you!
My xml is
<?xml version="1.0" encoding="utf-8"?>
<GameStore>
    <Game type="adventure">
    <TITLE>Assassin's Creed: Brotherhood</TITLE>
    <PUBLISHER>Ubisoft</PUBLISHER>
    </Game> 
    <Game type="adventure">
    <TITLE>Batman: Arkham Asylum</TITLE>
    <PUBLISHER>Eidos</PUBLISHER>
    </Game>
    </GameStore>