hey i have been having trouble with reading the word of the day html file from dictionary.com when I run he script from a remote server. If i run it from my own server it works fine. here's the script:
$count=0;
$fp = @fopen("http://dictionary.reference.com/wordoftheday/index.html", "r");
$data = "";
while($data!="<!-- SECBR -->\n")
{
$data = fgets($fp, 4096);
$count++;
if ($count>=139) {
echo "$data";
}
}
fclose($fp);
if you guys could tell me how to fix this id be very appreciative ^^ thanks


