// トピックス読み込み
$dat="whatsnew_bus.log";
$line="";
$line=@file($dat);
$i=0;
$j=0;
for($i = 0; $j < 10; $i++){
if($line[$i]==""){
$j++;
continue;
}
list($no,$now,$name,$email,$sub,$com,$url,$host,$pwd,$ext,$w,$h,$time,$chk) = explode(",", $line[$i]);
$topics .= "■ ".ereg_replace("\(...\).*$", "", $now)."
".$sub."
\n";
$j++;
}
?>