$indexfile = file("hunter.html");
$comment = false;
$topic = "hunter";
$subtopic = "vs";
$subtopic2 = "keitai";
foreach($indexfile as $indexline){
if(ereg("",$indexline)){
chdir("../topics");
include("topics_common.php");
viewtopicindex($topic,$offset);
viewtopics_with_times_and_offset($topic,1,0+$offset,$comment);
if($offset == 0){
viewtopics_with_times_and_offset($subtopic,1,0,$comment);
viewtopics_with_times_and_offset($subtopic2,1,0,$comment);
}
viewtopics_with_times_and_offset($topic,4,1+$offset,$comment);
viewtopicindex($topic,$offset);
}else{
echo $indexline;
}
}
?>