PHP: <? $file = file_get_contents('http://sait.ru/index.php?parametr=16228&country_id=45412'); $patern = '/<font color="red">([0-9]*)<\/font>/s'; preg_match_all($patern, $file, $result); print_r ($result); ?> в $result[1][0] и $result[1][1] будут находиться нужные тебе значения
PHP: <?php $content = file_get_contents('http://site.ru/?id=16228&country_id=45412'); preg_match_all('/"red">([^<]*)/', $content, $date); $prefix = $date[1][0]; //echo $prefix; $phone = $date[1][1]; //echo $phone; ?>