I\'m learning how to parse XML with PHP\'s simple XML. My code is:
This line:
print_r($result);
is outside the foreach loop. Maybe you should try
print_r($results);
instead.