> 『日記』で上記と同じ事を行いたいのですが、どうも上手くできません。
> ※topページに月間のログを読み込みたい。
open (IN,$file);
@line = <IN>;
close (IN);
if (@line) { print qq|<h3><font color="$tc">最近の$title2</font></h3>\n| if $title2; }
else {
print <<EOF;
<table bgcolor="$tw_c" width="$t_wid" border="0" cellspacing="1">
<tr>
<th>
<table border="0" width="100%" cellspacing="1" cellpadding="5">
<tr bgcolor="$tbt_c">
<th>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<th nowrap><font color="$ti_c">LOGがありません</font></th>
<td nowrap align="right">
</td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</table>
EOF
}
以上を全て削除してください。
中途半端に削除をすれば動かなくなります。
その上で、記事274の後半の部分をやれば出来るかと思います。
たぶん・・・
|