输出当前fid上的所有文章列表

输出当前fid下的所有文章列表
<!--
EOT;
$fidDB[listorder]=2;
//排序方式(参见artic_function.php  之 ListThisSort()
$listdb=ListThisSort(5,25);	
//参数一是最大数量,参数二是标题长度。
foreach($listdb AS $key=>$rs){
$target=$rs[target]?'_blank':'_self';
$rs[title]=get_word($rs[full_title],20,0);
$rs[fontweight] =($rs[fonttype]==1)?'font-weight:bold;':'';
$rs[fontcolor]  =$rs[titlecolor]?"color:$rs[titlecolor];":'';
print <<<EOT
-->
<LI><A href="fineview.php?fid=$rs[fid]&id=$rs[aid]" title='$rs[full_title]' style="{$rs[fontweight]}{$rs[fontcolor]}">$rs[title]</A></LI>
<!--
EOT;
}
print <<<EOT
-->