Look up Curl... it is in php.
http://php.net/manual/en/book.curl.php
Here is a nice video on it, that might be related to something you're trying to pull off.
http://www.youtube.com/watch?v=PvEJz6du7R0
Here is also some code, to get the source code of a website using curl.
<?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;
?>
One more way of doing what you want, is to use an iframe within a div...
<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>
Some websites don't allow you to iframe their site, so this might not work. Example, you can't iframe google, youtube, yahoo, and others.
Hope this helped :D