Codice PHP:
<?php
$content 
''
$fp fsockopen ("www.sito.xxx"80$errno$errstr30); 
if (!
$fp) { 
echo 
"$errstr ($errno)
\n"

} else { 
fputs ($fp"GET / HTTP/1.0\r\nHost:[url]www.sito.xxx\r\n\r\n[/url]"); 
while (!
feof($fp)) { 
$content .= fgets ($fp,128); 

fclose ($fp); 
}

// $content contiene la pagina in questione
// adesso trovi una regola che ti permetta di individuare la parte
// che ti interessa e di farne quel che vuoi
?>