<?php $page = file_get_contents('http://....'); preg_match('|\<b\>(.*)\</b\>|U', $page, $out); echo $out[1]; // Содержимое <b></b> ?>