acosonic on 08/31/09
Last Edited at 08/31/09 02:09am
$handle = fopen("http://www.google.com", "r");$contents = '';while (!feof($handle)) { $contents .= fread($handle, 8192);}fclose($handle);
Report this snippet Tweet
Comment:
You need to login to post a comment.