così funge

Codice PHP:
<?php

    $file 
fopen('http://www.google.it'"r");
    
$html "";
        while(!
feof($file)){

          
$riga=fgets($file);
          
$html .= htmlspecialchars($riga);

        }

    
fclose($file);



echo 
$html;

?>