Thread: PHP Question
View Single Post
Old 02-28-2004, 11:38 AM  
Ash@phpFX
Confirmed User
 
Join Date: Nov 2003
Posts: 4,292
$fd=fopen("http://www.url.com","r");
while ($line=fgets($fd,1000))
{
$alltext.=$line;
}
fclose ($fd);

reads it into $alltext
Ash@phpFX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote