I've problems using fopen() on my server. What can be the problem???
If do this it works:
$url = "http://www.php.net";
$sourcepage = "$url/manual/en/function.fopen.php";
$dynamic_source = fopen($sourcepage, 'r');
If do this it DOES NOT work (I get WARNING message):
$url = "http://www.mysite.it";
$sourcepage = "$url/partyround/gestione_newsletter/cdm.php";
$dynamic_source = fopen($sourcepage, 'r');