Ver original<?php$xml1 = simplexml_load_file("productos_1.xml");$xml2 = simplexml_load_file("productos_2.xml"); foreach($xml1,$xml2->children() as $child) { echo $child->nombre."<br>US$ <b>".$child->precio. "</b><br/><br>"; }?>