Hi guys, Im trying to get the page content on the url using fopen and fread.
But it only gets the top 5000 characters of the pages I need.
Any help would be great.
PHP Code:$url = http://search.yahoo.com/search?p=web+services&fr=FP-tab-web-t&toggle=1&ei=UTF-8;
$open = @fopen("$url", "r");
$read = fread($open, 10000);
fclose($open);
$read = strtolower($read);
echo "<textarea name='size=41' cols='45' rows='15'>$read</textarea>";





Bookmarks