R
Rookie
This is my xml-file
<?xml version="1.0" ?>
<call number="123" description="test call">
<def art="12" description="test" status="fixed"/>
</case>
I need to write to this existing xml file and add a new element e.g. <def
art="09" description="test_2" status="new"/>
<?xml version="1.0" ?>
<call number="123" description="test call">
<def art="12" description="test" status="fixed"/>
<def art="09" description="test_2" status="new"/>
</case>
How to do that ?
Rookie
<?xml version="1.0" ?>
<call number="123" description="test call">
<def art="12" description="test" status="fixed"/>
</case>
I need to write to this existing xml file and add a new element e.g. <def
art="09" description="test_2" status="new"/>
<?xml version="1.0" ?>
<call number="123" description="test call">
<def art="12" description="test" status="fixed"/>
<def art="09" description="test_2" status="new"/>
</case>
How to do that ?
Rookie