Hi
I have this xml file
<candy><product>Mints</product><product>Chocolate</product><product>Circus Peanuts</product></candy>
and I want it to be :
<candy>
<product>Mints</product>
<product>Chocolate</product>
<product>Circus Peanuts</product>
</candy>
HOW CAN I DO THAT ?
I am using XML:OM:arser in my code ..
I have this xml file
<candy><product>Mints</product><product>Chocolate</product><product>Circus Peanuts</product></candy>
and I want it to be :
<candy>
<product>Mints</product>
<product>Chocolate</product>
<product>Circus Peanuts</product>
</candy>
HOW CAN I DO THAT ?
I am using XML:OM:arser in my code ..