I am creating a xml file in this format
Expand|Select|Wrap|Line Numbers
- <?xml version="1.0" encoding="utf-8" standalone="yes"?>
- <customers>
- <customer>
- <category>Broschüren</category>
- <number>4</number>
- <email>abc@xyz.net</email>
- <name>ABC XYZ</name>
- <farben>4</farben>
- <preflight>1</preflight>
- <format>148 210</format>
- <paper>135</paper>
- </customer>
- </customers>
Expand|Select|Wrap|Line Numbers
- <category>Broschüren</category>
If some one help me out to sort out my problem then i will be very grateful to him/her.
I am using DOMDocument in order to create xml file at run/execution time. and here is my method of creating xml document
Expand|Select|Wrap|Line Numbers
- $dom = new DOMDocument("1.0", "utf-8");
- $dom->xmlStandalone = true;
Awaiting a positive response from this great community