Jordan, could you do me a favor and test these 2 scripts on one of your servers please and let know if either or one of them works.
PHP Code:
<?php
$url= "https://www.novaworld.com/Players/Stats.aspx?id=33680801261&p=616065";
$content = file_get_contents($url);
echo $content;
?>
PHP Code:
<?php
$url = "https://www.novaworld.com/Players/Stats.aspx?id=33680801261&p=616065";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$returned = curl_exec($ch);
curl_error($ch);
curl_close($ch);
echo $returned;
?>
thanks