<!--通用调用--->
<?
function getarlist($tno,$type=1){
global $db,$LG,$TEMP_SET,$classarr;
?>
<?
if(isset($TEMP_SET[$tno])){
$tcid=intval($TEMP_SET[$tno]["value"]);
$title=$TEMP_SET[$tno]["title"];
?>
<div class="xinwen">
<div class="pright1">
<h3><p><? echo $title;?></p></h3>
<div class="xnews2 xw">
<?
$query=$db->query("select title,aid,addtime,pic from ".$LG->table("article")." where class like '".getarcn($tcid)."%' order by addtime desc limit 6");
$id = 0;
$i=0;
while($rs=$db->fetchrow($query)){
$id = $rs['id'];
?>
<?if ($i ==0) {
?>
<div class="prpic3">
<a href="<? echo getarurl($rs["aid"]);?>"><img src="<? echo $rs["pic"];?>" /></a>
<p><a href="<? echo getarurl($rs["aid"]);?>"><? echo $rs["title"];?></a></p>
</div>
<?
}else{?>
<li><a href="<? echo getarurl($rs["aid"]);?>" title="<? echo $rs["title"];?>" target="_blank">
<? echo $rs["title"];?> </a></li>
<?}?>
<? $i++;}?>
</div> </div>
<? }?></div>
<?
}
?>
<!--通用调用--->