$url="www.whatever.com".$url;
$url = fopen($url, "r");
$url = fread($url, 1000000);
$result = &$url;
echo $result;
can anyone suggest why this would return the full file on one server, but only a little bit of the whole file on another? is there a max fread size that is being overwitten?
Thanks