");
} else {
if(!$OUT = fopen($localVer,"w"))
{ die($php_errormsg); }
fputs($OUT,"
\n");
$mystore = array();
$count = 0;
// 9th is stocks and 10th is usually a sports item
while (!feof($fh) and $count < 10)
{
$line = fgets($fh,1048576);
if (preg_match("/class=topstory>/",$line,$capture))
{
$prev = array_pop($mystore);
$prev = preg_replace("//","",$prev);
fputs($OUT,"- ".$prev);
fputs($OUT, $line); # write local
fputs($OUT,"
\n");
$count++;
} # end if
array_push($mystore, $line);
}
fputs($OUT,"
\n");
fflush($OUT);
fclose($fh);
fclose($OUT);
}
?>