Tuesday, December 22, 2009

$articleURL = "http://www.surefirewealth.com/article/surefirearticle.php?ano=5";
$handle = fopen($articleURL,"rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
print $contents;
//$contents holds the article contents

No comments:

Post a Comment