I have this XML file content:
<?xml version="1.0" encoding="utf-8"?>
<products>
<item>
<ItemID>01</ItemID>
<ItemName>Book</ItemName>
</item>
<Product>
<ProductID>01</ProductID>
<ProductName>Paper</ProductName>
</Product>
and want the output like this format to remove the leading white spaces from the beginning of <product> to be like this:
<?xml version="1.0" encoding="utf-8"?>
<products>
<item>
<ItemID>01</ItemID>
<ItemName>Book</ItemName>
</item><Product>
<ProductID>01</ProductID>
<ProductName>Paper</ProductName>
</Product>
Can I do it in PHP?
Thanks in advance.