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