Ciao, per aprire pagine esterne al dominio, ti consiglio vivamente di utilizzare cURL...
Codice PHP:
function get_content($URL){
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it-IT; rv:1.7.5) Gecko/20041107 Firefox/1.0');
curl_setopt($ch, CURLOPT_REFERER, 'http://www.google.it');
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
echo get_content('http://www.paginegialle.it/pgol/4-abbigliamento');
Fammi sapere, Ciao.