Jump to content

combining dom documents


devdavad

Recommended Posts

I have two xml files which I want to combine into one xml file (a layout file and a template file). So the structure of the layout goes:

<html>
<body>
<div xml:id="append_here">
</div>
</body>
</html>

and the template goes:

<p>test</p>

So together:

<html>
<body>
<div><p>test</p></div>
</body>
</html>

 

Can anybody give me some hints on how to insert a dom document into another dom document?

Link to comment
https://forums.phpfreaks.com/topic/165532-combining-dom-documents/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.