User-284642143 posted
Really struggling to get this right....Does anyone have an example i can follow to create an XML file which would look like
For each c in myCustomerData
<Customers>
<Customer id=c.id>
<Name><Name>
<Address></Address>
</Customer>
<Customer id=c.id>
<Name><Name>
<Address></Address>
</Customer>
</Customers>
Next
The end output file would look like
<?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<Customers>
<Customer id="1">
<Name><Name>
<Address></Address>
</Customer>
<Customer id="2">
<Name><Name>
<Address></Address>
</Customer>
</Customers>
Thanks