I’m trying to create XML Files with PHP. I can create normal nodes like:
<node>
<subnode>Value</subnode>
</node>
But now I want to create a node with information in the name of the node like:
<node information="value">Value</node>
How can I do that using PHP and the DOMDocument?
Thanks
1 Answer