Вот тебе для этого волшебная функция. Как понадобится страница заветная - используй ее.
Например:
$g = get_web_page("google.com");
echo $g['content'];
function get_web_page( $url ){
$uagent = $_SERVER["HTTP_USER_AGENT"];
$ch = curl_init( $url );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_ENCODING, "");
curl_setopt($ch, CURLOPT_USERAGENT, $uagent);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
$content = curl_exec( $ch );
$err = curl_errno( $ch );
$errmsg = curl_error( $ch );
$page = curl_getinfo( $ch );
curl_close( $ch );
$page['errno'] = $err;
$page['errmsg'] = $errmsg;
$page['content'] = $content;
return $page;
}