TO GET CONTENT from URL
1) (Firstly, you should enable Allow_url_fopen from your hosting, in php.ini or somewhere)
<?php
//you may use "r" instead of "rb"
$variablee = fopen('http://example.com/', "rb");
echo stream_get_contents($variablee);
?>
OR
2) (firstly, enable php_curl, php_imap, php_openssl )
<?php
// you can see another curl options at http://php.net/manual/en/function.curl-setopt.php
function get_data($url) {
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$variablee = get_data('http://example.com');
echo $variablee;
?>
(Note: to get the images or links correctly from the target page you may need to re-parse content before output. for example, change href="./imageblabla.png" to href="http://site.com/imageblabla.png")