<?php
header('Content-Type: text/plain; charset=UTF-8');
$xml = file_get_contents('http://pastehtml.com/view/19qgkgx.txt');
$s = simplexml_load_string($xml);
// This only displays the first of five items!
print_r($s->ResultSet->Matchup->Trends->Team[0]->TeamTrends->Trend);
?>
|