<html>
<body>
<?
$f = file_get_contents("http://www.businesspravo.ru/Docum/DocumShow_DocumID_148423.html");
if (preg_match("/<PRE>(.*)<\/PRE>/i", $f, $matchd)){
echo "<PRE>".$matchd[1]."</PRE>";
}else{
echo "вхождение не произошло";
}
?>
</body>
</html>
В чем может быть проблема?