최신글추출할때 맨처음글(맨윗글)이 항상 공지글이 나오게 하려면 어떻게해야하나요?
본문
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="noti" >
<? for ($i=0; $i<count($list); $i++) { ?>
<tr >
<td>
<?
echo $list[$i]['icon_reply'] . " ";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
echo "<font style='font-family:돋움; font-weight:bold; font-size:11pt; color:#6b6b6b;'>{$list[$i]['subject']}</font>";
else
echo "<font style='font-family:돋움; font-size:11pt; color:#6b6b6b;'>{$list[$i]['subject']}</font>";
echo "</a>";
if ($list[$i]['comment_cnt'])
echo " <a href=\"{$list[$i]['comment_href']}\"><span style='font-family:돋움; font-size:11pt; color:#6b6b6b;'>{$list[$i]['comment_cnt']}</span></a>";
// if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
// if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }
echo " " . $list[$i]['icon_new'];
//echo " " . $list[$i]['icon_file'];
//echo " " . $list[$i]['icon_link'];
//echo " " . $list[$i]['icon_hot'];
//echo " " . $list[$i]['icon_secret'];
?></td>
<td width="65" height="18" align="right"><span style="font-family:tahoma; color:#999; font-size:11px;">
<?=$list[$i]['datetime']?>
</span></td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?>
<tr>
<td height="50" colspan="2" align="center"><font color=#6A6A6A>게시물이 없습니다.</font></td>
</tr>
<? } ?>
</table>
안녕하세요 초보디자이너입니다.
제목에서 보시다시피 최신글을뽑아냈는데 공지글이 항상 맨위로가고싶은데 새글을 쓰면 공지글이 내려갑니다. 항상 맨윗글을 공지글로 고정하려면 어떤걸 수정해야할까요?
위의 코드는 latest.skin.php 소스입니다.
!-->
답변을 작성하시기 전에 로그인 해주세요.