Multiple XML to DOM

eretryGef

New Member
I have multiple XML feeds with the same scheme and want to combine them to one bundle. I currently save 1 file like this:\[code\]$dom = new DOMDocument('1.0', 'UTF-8');$dom->load( 'http://FEEDURL.COM/FEED.PHP' ); $dom->encoding='UTF-8';$dom->save( 'data.xml' ); /* <?xml version="1.0" encoding="UTF-8"?> */\[/code\]I need this script to load multiple feeds and all save them to the one file called data.xml.
 
Back
Top