";
if ( file_exists("./topichistory.txt") )
{
$fileopen = fopen("./topichistory.txt","r");
$topic = " ";
$topicadd = "";
while ( !feof($fileopen) )
{
if ( $topicadd!="" ) $topic.="
\n ";
$topicadd = fgets($fileopen,4096);
$topic.= "$topicadd";
}
$news = stripslashes("$topic");
fclose($fileopen);
echo $topic;
}
?>