06/02/18 05:05:33 0
【CGI名】TopicsBoard
【配布先】URLリンク(www.kent-web.com) (kent-web)
掲示板なんですが、仕様では新着順に表示されるのですが、
それを古い順に表示したいのです。
以下の部分を編集すれば良いと思うのですが、どなたかお願いしますm(__)m
# データ読み込み
@loop=();
$i=0;
open(IN,"$logfile") || &error("Open Error: $logfile");
while (<IN>) {
$i++;
next if ($i < $page + 1);
next if ($i > $page + $pagelog);
$msg = $loop;
($no,$date,$sub,$com,$t[0],$w[0],$h[0],
$t[1],$w[1],$h[1],$t[2],$w[2],$h[2]) = split(/<>/);