I'm trying to get an XML file saved on another server to echo out on my php script...not working of course, otherwise I wouldn't be posting this!!!
<?php
$key_url = "http://stats.planetsidegaming.com/15/273380/stats2.xml";
$keypage = fopen($key_url, "r");
$keycode = fgets($keypage, 4096);
$keycode = trim($keycode);
echo("KEY INFO:<br><br>$keycode");
?>