something i'm missing here but i don't know what... my code looks like this:
$remote = file("http://www.avalidurl.com") or die("Can't read web page.");
$html = implode('', $remote);
print($html);
but the file function always dies... just spits out the die text.
Is there something I need turned "on" in php to read urls in the file?
thanks
sm