Thread
:
PHP Question
View Single Post
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
View Public Profile
Find More Posts by Ash@phpFX