$instPath = explode("/board/partList.html", __FILE__);
$noSession = "yes";
include $instPath[0]."/lib/link";
// °Ô½ÃÆÇ Á¤º¸
$qi = mysqlQuery(" select * from n_boardInfo where code = $bbsCode ");
$ci = mysqlFetch($qi);
$bbsTableName = "n_board".$ci[code];
$commentTableName = $bbsTableName."_comment";
$skinPath = $IMAGE_ROOT."/board/skin/".$ci[skinPath];
$q1 = mysqlQuery("select * from $bbsTableName order by regDate desc limit $listNum ");
$t1 = mysqlAffected($q1);
echo("
");
for($i=0;$i<$t1;$i++) {
$c1 = mysqlFetch($q1,$i);
if($dispDate == 1) {
$regDate = dateFormat($c1[regDate]);
$c1[title] = "[$regDate[0].$regDate[1].$regDate[2]]$c1[title]";
}
if($dispWriter == 1) {
$c1[title] = "$c1[title]($c1[writer])";
}
if($charsNum > 0) {
$c1[title] = cutString($c1[title], $charsNum);
}
echo("
 |
$c1[title] |
|
");
}
echo("
");
?>
/*----------------------------------------------------------------
ÆÄ ÀÏ ¸í : partList.html
------------------------------------------------------------------
»ç ¿ë ¿ä ¾à : [ÀϹÝ] ÆäÀÌÁö³» °Ô½Ã¹° ÃßÃâÆäÀÌÁö
------------------------------------------------------------------
°³ ¹ß ÀÚ : ±è¿ìÇö
------------------------------------------------------------------
µð ÀÚ ÀÎ : ±è¹Î¾Æ
------------------------------------------------------------------
Á¦ÀÛ ½ÃÀÛÀÏ : 2003/04/04
------------------------------------------------------------------
¼ö Á¤ ³» ¿ë : ¼öÁ¤ÀÏ :
¼öÁ¤ÀÚ :
³» ¿ë :
------------------------------------------------------------------*/
?>