Curlを調べてください...それはphpにあります。
http://php.net/manual/en/book.curl.php
ここに素晴らしいビデオがあります。これは、あなたがやろうとしていることに関連している可能性があります。
http://www.youtube.com/watch?v=PvEJz6du7R0
ここには、curl を使用して Web サイトのソース コードを取得するためのコードもいくつかあります。
<?php
$ch = curl_init("http://www.example-webpage.com/file.html");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);
echo $content;
?>
必要なことを行うもう1つの方法は、div内でiframeを使用することです...
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#container{
width:300px;
height:100px;
border:1px solid #000;
overflow:hidden;
margin-left:50%;
margin-top:5%;
}
#container iframe {
width:1000px;
height:750px;
margin-left:-734px;
margin-top:-181px;
border:0 solid;
}
-->
</style>
</head>
<body>
<div id="container">
<iframe src="http://www.w3schools.com/" scrolling="no"></iframe>
</div>
</body>
</html>
一部の Web サイトでは、サイトの iframe を許可していないため、これが機能しない場合があります。たとえば、Google、YouTube、Yahoo などを iframe にすることはできません。
これが役に立てば幸いです:D