I want to create PHP page that allow me to add data into the XML file, I want to make the xml file looks like that:
<?xml version="1.0" encoding="UTF-8"?>
<ArrayOfPlayer>
<Player>
<DisplayName>FuznesS</DisplayName>
<UserID>123123</UserID>
</Player>
<Player>
<DisplayName>Vortex</DisplayName>
<UserID>321321</UserID>
</Player>
</ArrayOfPlayer>
and be able to add more
<Player>
<DisplayName>Vortex</DisplayName>
<UserID>321321</UserID>
</Player>
and everyting that I adding will be inside the
<ArrayOfPlayer>
</ArrayOfPlayer>
thanks for helping.