Grazie per la risposta....
l'errore che mi da è questo:
Warning: file_get_contents(http://www.communityre.eu/RSS/6_2456_01.xml) [function.file-get-contents]: failed to open stream: Tentativo di accesso al socket con modalità non consentite dalle rispettive autorizzazioni di accesso. in C:\Program Files\EasyPHP-5.3.8.0\www\IbsRE-5-Restyle9_9_5\admin\property_import.php on line 23

Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files\EasyPHP-5.3.8.0\www\IbsRE-5-Restyle9_9_5\admin\property_import.php on line 23

il php invece è questo se vuoi provare:

$url = "http://www.communityre.eu/RSS/6_2456_01.xml";
$leggo = file_get_contents($url);

$fp = fopen('../xml/db2.xml', 'w');
fwrite($fp, $leggo);
fclose($fp);


GRazie