XML indentation issue with simpleXML and DOM in PHP
Hi there,
I've been working on an XML management script in PHP. You can basically view the contents of an XML file, add items or delete items. I'm as happy as a clam right now in all honesty. There is one nagging problem i'm having though...any new items added to the file are displayed as one long line of markup and are not nicely indented like other areas of the file. I found a fix on StackOverflow...you basically convert the simpleXML object to a DOM object, then set a value and save the file. It's not working for me though.
Anyways, here's the XML file :
<advertisements> <item name="burger"> <image>burger.jpg</image> <price>5.99</price> <metric>1 pound</metric> <description>Integer tellus nibh, volutpat id sodales vitae, facilisis vel dolor. Etiam accumsan orci quis risus aliquam vitae scelerisque nulla volutpat. Maecenas placerat purus in augue blandit id consequat tellus pellentesque. Pellentesque congue laoreet turpis at lobortis.</description> </item></advertisements>
The last 3 lines where I created use the $dom variable is the workaround I found on StackOverflow but the indentation is not taking hold for new items. Any help would be much appreciated!