ok the code below works perfect, but it needs to be cleaned up a bit (dont laugh at my regex abilities

)
PHP Code:
<?php
$url = "https://www.novaworld.com/Players/Stats.aspx?id=8542545489&p=616065";
//Gets the content of the submited URL;
$content = file_get_contents($url);
//Strips the tags of the $content;
$strip = strip_tags($content);
preg_match('#Down
(.*?)
Rank#', $strip, $matches);
$str = $matches[1];
echo $str;
?>