$feed_url = "http://pf.tradetracker.net/?aid=80880&type=xml&encoding=utf-8&fid=1621&categoryType=2&additionalType=2";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $feed_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 0);
$xmlTwitter = curl_exec($curl);
curl_close($curl);
$xml = simplexml_load_string($xmlTwitter);
?>

