Hi there,
I've tried search around for the solution to this problem but it's difficult to search for.
Basically I have a form that sends data to an XML file when submitted. The problem I am having is that when the data goes to the XML file, it all goes into one line, so all of the information appears after each other on the same line rather than spacing out into a readable layout.
Quick example.
This is how it appears:
<example><text><somethingelse></somethingelse></text></example>
And I want it to look like this
<example>
<text>
<somethingelse>
</somethingelse>
</text>
</example>
Can anybody help?
Cheers 🙂