Ciao,
vorrei elaborare una stringa presente su una pagina web e sto facendo qualche prova.
Ho letto che è possibile utilizzare le librerie CURL .
Ho usato il seguente codice:

codice:
$url = "http://www.google.it/"; // Sito da cui ricevere il codice 
$ch = curl_init($url); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
$res = curl_exec($ch); // $res contiene il codice HTML del sito curl_close($ch); 
echo "Il codice HTML di ".$url." è: <hr />".htmlspecialchars($res);
usando come l'url : google.it (o altri) lo script funziona, ma se metto http://www.meteoam.it/
ho il seguente errore:

codice:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> 

You don't have permission to access / on this server.</p> 

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.</p> <hr> <address>Apache/2.2.3 (Linux/SUSE) Server at www.meteoam.it Port 80</address> </body></html>
sapete spiegarmi il perchè? e se esiste un modo per evitarlo
grazie!