리스트스킨-썸네일 이미지 출력-고수님 도와주세요!!ㅠㅠ 정보
리스트스킨-썸네일 이미지 출력-고수님 도와주세요!!ㅠㅠ첨부파일
본문
댓글 전체

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 썸네일 생성
$thumb_width = "153"; //썸네일 가로길이
$thumb_height = "116"; //썸네일 세로길이
// 1차 디렉토리 (썸네일 폴더)
$thumb_path2 = $g4['path'] . "/data/thumb";
// 1차 디렉토리 생성 및 퍼미션
@mkdir($thumb_path2, 0707);
@chmod($thumb_path2, 0707);
// 2차 디렉토리 (게시판 폴더)
$thumb_path1 = $thumb_path2."/" . $bo_table;
// 1차 디렉토리 생성 및 퍼미션
@mkdir($thumb_path1, 0707);
@chmod($thumb_path1, 0707);
// 썸네일 디렉토리
$thumb_path = $thumb_path1 . "/" . $thumb_width . "x" . $thumb_height;
// 디렉토리 생성 및 퍼미션
@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
// 썸네일 생성
function image_thumb($imgWidth, $imgHeight, $imgSource, $imgThumb='', $iscut=false)
{
if (!$imgThumb) {
$imgThumb = $imgSource;
}
$size = getimagesize($imgSource);
if ($size[2] == 1) {
$source = imagecreatefromgif($imgSource);
}
else if ($size[2] == 2) {
$source = imagecreatefromjpeg($imgSource);
}
else if ($size[2] == 3) {
$source = imagecreatefrompng($imgSource);
} else {
continue;
}
$rate = $imgWidth / $size[0];
$height = (int)($size[1] * $rate);
if ($height < $imgHeight) {
$target = @imagecreatetruecolor($imgWidth, $height);
} else {
$target = @imagecreatetruecolor($imgWidth, $imgHeight);
}
@imagecopyresampled($target, $source, 0, 0, 0, 0, $imgWidth, $height, $size[0], $size[1]);
@imagejpeg($target, $imgThumb, 100);
@chmod($imgThumb, 0606); // 추후 삭제를 위하여 파일모드 변경
}
// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 6;
//if ($is_category) $colspan++;
if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;
// 제목이 두줄로 표시되는 경우 이 코드를 사용해 보세요.
// <nobr style='display:block; overflow:hidden; width:000px;'>제목</nobr>
//여분필드추가시 wr_번호
if ($fadmin =='fok') {
if ($is_admin =='super') {
//시작할번호 wr_추가시작할 번호
$af = 11;
//마지막번호 생성할 마지막번호+1
$bf = 101;
for ($di=$af; $di<$bf; $di++) {
$g4memoup ="ALTER TABLE $g4[write_prefix]$bo_table ADD wr_{$di} VARCHAR(255) NOT NULL";
$resultup = @mysql_query($g4memoup) or mysql_error();
if ($resultup) {
echo "$bo_table 게시판에 wr_{$di} 필드생성 성공 하였습니다......ㅊㅋ<br><br>";
} else {
echo "$bo_table 게시판에 wr_{$di} 필드가 이미 존재 하거나 생성실패......ㅠㅠ<br><br>";
}
}
} else {
alert_close("니 머꼬? 콱");
}
//exit;
}
//여분필드삭제시
if ($fadmin =='fdel') {
if ($is_admin =='super') {
//필드삭제를 시작할번호 wr_삭제시작 번호
$adf = 11;
//필드삭제할 마지막번호 +1
$bdf = 101;
for ($di=$adf; $di<$bdf; $di++) {
$g4memoups ="ALTER TABLE $g4[write_prefix]$bo_table DROP wr_{$di}";
$resultups = @mysql_query($g4memoups) or mysql_error();
if ($resultups) {
echo "$bo_table 게시판에 wr_{$di} 필드삭제를 성공 하였습니다......ㅊㅋ<br><br>";
} else {
echo "$bo_table 게시판에 wr_{$di} 필드가 존재 하지않거나 삭제실패......ㅠㅠ<br><br>";
}
}
} else {
alert_close("니 머꼬? 콱");
}
// exit;
}
?>
<!-- 게시판 목록 시작 -->
<table width="<?=$width?>" align=center cellpadding=0 cellspacing=0><tr><td>
<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<table width="100%" cellspacing="0" cellpadding="0">
<tr height="25">
<? if ($is_category) { ?><form name="fcategory" method="get"><td width="50%"><select name=sca onchange="location='<?=$category_location?>'+this.value;"><option value=''>전체</option><?=$category_option?></select></td></form><? } ?>
<td align="right">
접수 총 <?=number_format($total_count)?>건
<? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border=0 align=absmiddle></a><?}?>
<? if ($admin_href) { ?><a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/admin_button.gif" title="관리자" width="63" height="22" border="0" align="absmiddle"></a><?}?></td>
</tr>
<tr><td height=5></td></tr>
</table>
<!-- 제목 -->
<form name="fboardlist" method="post" style="margin:0px;">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table width=100% cellpadding=0 cellspacing=0>
<!-- 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr height=28 align=center>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="694" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" height="4"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="5" height="120"></td>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_03.gif" width="157" height="2"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_06.gif" width="2" height="116"></td>
<td width="153" height="116">
<?
// 이미지 체크
$sql = " select bf_file, bf_datetime from $g4[board_file_table] where bo_table = '$bo_table' and wr_id = '{$list[$i][wr_id]}' and bf_type in (1,2,3) ";
$listFile = sql_fetch($sql);
// 이미지가 있다면.
if ($listFile['bf_file']) {
// 썸네일
$thumb = $thumb_path.'/'.$listFile['bf_file'];
// 원본
$thumb_file = $g4['path']."/data/file/".$bo_table."/".$listFile['bf_file'];
// 파일명
$img_filename = $listFile['bf_file'];
} else {
// 에디터
// 썸네일
$thumb = "";
// 원본
$thumb_file = "";
// 파일명
$img_filename = "";
}
// 썸네일이 없다면
if (!file_exists($thumb)) {
// 확장자 체크
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $thumb_file)) {
// 썸네일 생성. 가로, 세로, 원본경로, 생성경로
image_thumb($thumb_width, $thumb_height, $thumb_file, $thumb, true);
}
}
?>
<? if (file_exists($thumb) && $img_filename) { ?><img src="<?=$thumb?>" border="0"><? } else { ?>no image<? } ?>
</td>
<td><img src="../images/sell_08.gif" width="2" height="116"></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="../images/sell_25.gif" width="157" height="2"></td>
</tr>
</table></td>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="527" height="2"></td>
</tr>
<tr>
<td width="527" height="20">
<?
if($list[$i][wr_37]==2) echo "<img src='$board_skin_path/img/order2.gif' align='absmiddle' border='0'> ";
elseif($list[$i][wr_37]==3) echo "<img src='$board_skin_path/img/order3.gif' align='absmiddle' border='0'> ";
else echo "<img src='$board_skin_path/img/order1.gif' align='absmiddle' border='0'> ";
?>
<?
echo $nobr_begin;
echo $list[$i][reply];
echo $list[$i][icon_reply];
if ($is_category && $list[$i][ca_name]) {
echo "<span class=small><font color=gray>[<a href='{$list[$i][ca_name_href]}'>{$list[$i][ca_name]}</a>]</font></span> ";
}
$style = "";
if ($list[$i][is_notice]) $style = " style='font-weight:bold;'";
echo "<a href='{$list[$i][href]}' $style>";
echo $list[$i][subject];
echo "</a>";
if ($list[$i][comment_cnt])
echo " <a href=\"{$list[$i][comment_href]}\"><span style='font-family:Tahoma;font-size:10px;color:#EE5A00;'>{$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];
echo $nobr_end;
?>
</td>
</tr>
<tr>
<td width="527" height="64"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10"> </td>
<td><?=$list[$i][wr_content]?></td>
<td width="10"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td><img src="../images/sell_11.gif" width="527" height="4"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_12.gif" width="8" height="28"></td>
<td width="66" height="28" align="center"><?=$list[$i][wr_12]?>평</td>
<td><img src="../images/sell_14.gif" width="3" height="28"></td>
<td width="65" height="28" align="center"><?=$list[$i][wr_13]?>층</td>
<td><img src="../images/sell_16.gif" width="3" height="28"></td>
<td width="63" height="28" align="center">PC <?=$list[$i][wr_14]?>대</td>
<td><img src="../images/sell_18.gif" width="3" height="28"></td>
<td width="98" height="28" align="center">보<?=$list[$i][wr_15]?>/월<?=$list[$i][wr_12]?></td>
<td><img src="../images/sell_20.gif" width="3" height="28"></td>
<td width="101" height="28" align="center">권<?=$list[$i][wr_17]?></td>
<td><img src="../images/sell_22.gif" width="3" height="28"></td>
<td width="109" height="28" align="center">매 <?=$list[$i][wr_19]?>만원</td>
<td><img src="../images/sell_24.gif" width="2" height="28"></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="../images/sell_26.gif" width="527" height="2"></td>
</tr>
</table></td>
<td width="5" height="120"></td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="4"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<?}?>
<? if (count($list) == 0) { echo "<tr><td colspan='$colspan' height=100 align=center>게시물이 없습니다.</td></tr>"; } ?>
</table>
</form>
<!-- 페이지 -->
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" align="center" height=30 valign=bottom>
<? if ($prev_part_href) { echo "<a href='$prev_part_href'><img src='$board_skin_path/img/btn_search_prev.gif' border=0 align=absmiddle title='이전검색'></a>"; } ?>
<?
// 기본으로 넘어오는 페이지를 아래와 같이 변환하여 이미지로도 출력할 수 있습니다.
//echo $write_pages;
$write_pages = str_replace("처음", "<img src='$board_skin_path/img/begin.gif' border='0' align='absmiddle' title='처음'>", $write_pages);
$write_pages = str_replace("이전", "<img src='$board_skin_path/img/prev.gif' border='0' align='absmiddle' title='이전'>", $write_pages);
$write_pages = str_replace("다음", "<img src='$board_skin_path/img/next.gif' border='0' align='absmiddle' title='다음'>", $write_pages);
$write_pages = str_replace("맨끝", "<img src='$board_skin_path/img/end.gif' border='0' align='absmiddle' title='맨끝'>", $write_pages);
$write_pages = preg_replace("/<span>([0-9]*)<\/span>/", "<b><font style=\"font-family:돋움; font-size:9pt; color:#797979\">$1</font></b>", $write_pages);
$write_pages = preg_replace("/<b>([0-9]*)<\/b>/", "<b><font style=\"font-family:돋움; font-size:9pt; color:orange;\">$1</font></b>", $write_pages);
?>
<?=$write_pages?>
<? if ($next_part_href) { echo "<a href='$next_part_href'><img src='$board_skin_path/img/btn_search_next.gif' border=0 align=absmiddle title='다음검색'></a>"; } ?>
</td>
</tr>
</table>
<!-- 링크 버튼, 검색 -->
<form name=fsearch method=get style="margin:0px;">
<input type=hidden name=bo_table value="<?=$bo_table?>">
<input type=hidden name=sca value="<?=$sca?>">
<table width=100% cellpadding=0 cellspacing=0>
<tr>
<td width="50%" height="40">
<? if ($list_href) { ?><a href="<?=$list_href?>"><img src="<?=$board_skin_path?>/img/btn_list.gif" border="0"></a><? } ?>
<? if ($write_href) { ?><a href="<?=$write_href?>"><img src="<?=$board_skin_path?>/img/btn_write.gif" border="0"></a><? } ?>
<? if ($is_checkbox) { ?>
<a href="javascript:select_delete();"><img src="<?=$board_skin_path?>/img/btn_select_delete.gif" border="0"></a>
<? } ?>
</td>
<td width="50%" align="right">
<select name=sfl>
<option value='wr_name,1'>이름</option>
<option value='wr_name,0'>이름(코)</option>
<option value='mb_id,1'>회원아이디</option>
<option value='mb_id,0'>회원아이디(코)</option>
</select><input name=stx maxlength=15 size=10 itemname="검색어" required value='<?=$stx?>'><select name=sop>
<option value=and>and</option>
<option value=or>or</option>
</select>
<input type=image src="<?=$board_skin_path?>/img/search_btn.gif" border=0 align=absmiddle></td>
</tr>
</table>
</form>
</td></tr></table>
<script language="JavaScript">
if ('<?=$sca?>') document.fcategory.sca.value = '<?=$sca?>';
if ('<?=$stx?>') {
document.fsearch.sfl.value = '<?=$sfl?>';
document.fsearch.sop.value = '<?=$sop?>';
}
</script>
<? if ($is_checkbox) { ?>
<script language="JavaScript">
function all_checked(sw) {
var f = document.fboardlist;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]")
f.elements[i].checked = sw;
}
}
function check_confirm(str) {
var f = document.fboardlist;
var chk_count = 0;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
alert(str + "할 게시물을 하나 이상 선택하세요.");
return false;
}
return true;
}
// 선택한 게시물 삭제
function select_delete() {
var f = document.fboardlist;
str = "삭제";
if (!check_confirm(str))
return;
if (!confirm("선택한 게시물을 정말 "+str+" 하시겠습니까?\n\n한번 "+str+"한 자료는 복구할 수 없습니다"))
return;
f.action = "./delete_all.php";
f.submit();
}
// 선택한 게시물 복사 및 이동
function select_copy(sw) {
var f = document.fboardlist;
if (sw == "copy")
str = "복사";
else
str = "이동";
if (!check_confirm(str))
return;
var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");
f.sw.value = sw;
f.target = "move";
f.action = "./move.php";
f.submit();
}
</script>
<? } ?>
<!-- 게시판 목록 끝 -->
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 썸네일 생성
$thumb_width = "153"; //썸네일 가로길이
$thumb_height = "116"; //썸네일 세로길이
// 1차 디렉토리 (썸네일 폴더)
$thumb_path2 = $g4['path'] . "/data/thumb";
// 1차 디렉토리 생성 및 퍼미션
@mkdir($thumb_path2, 0707);
@chmod($thumb_path2, 0707);
// 2차 디렉토리 (게시판 폴더)
$thumb_path1 = $thumb_path2."/" . $bo_table;
// 1차 디렉토리 생성 및 퍼미션
@mkdir($thumb_path1, 0707);
@chmod($thumb_path1, 0707);
// 썸네일 디렉토리
$thumb_path = $thumb_path1 . "/" . $thumb_width . "x" . $thumb_height;
// 디렉토리 생성 및 퍼미션
@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
// 썸네일 생성
function image_thumb($imgWidth, $imgHeight, $imgSource, $imgThumb='', $iscut=false)
{
if (!$imgThumb) {
$imgThumb = $imgSource;
}
$size = getimagesize($imgSource);
if ($size[2] == 1) {
$source = imagecreatefromgif($imgSource);
}
else if ($size[2] == 2) {
$source = imagecreatefromjpeg($imgSource);
}
else if ($size[2] == 3) {
$source = imagecreatefrompng($imgSource);
} else {
continue;
}
$rate = $imgWidth / $size[0];
$height = (int)($size[1] * $rate);
if ($height < $imgHeight) {
$target = @imagecreatetruecolor($imgWidth, $height);
} else {
$target = @imagecreatetruecolor($imgWidth, $imgHeight);
}
@imagecopyresampled($target, $source, 0, 0, 0, 0, $imgWidth, $height, $size[0], $size[1]);
@imagejpeg($target, $imgThumb, 100);
@chmod($imgThumb, 0606); // 추후 삭제를 위하여 파일모드 변경
}
// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 6;
//if ($is_category) $colspan++;
if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;
// 제목이 두줄로 표시되는 경우 이 코드를 사용해 보세요.
// <nobr style='display:block; overflow:hidden; width:000px;'>제목</nobr>
//여분필드추가시 wr_번호
if ($fadmin =='fok') {
if ($is_admin =='super') {
//시작할번호 wr_추가시작할 번호
$af = 11;
//마지막번호 생성할 마지막번호+1
$bf = 101;
for ($di=$af; $di<$bf; $di++) {
$g4memoup ="ALTER TABLE $g4[write_prefix]$bo_table ADD wr_{$di} VARCHAR(255) NOT NULL";
$resultup = @mysql_query($g4memoup) or mysql_error();
if ($resultup) {
echo "$bo_table 게시판에 wr_{$di} 필드생성 성공 하였습니다......ㅊㅋ<br><br>";
} else {
echo "$bo_table 게시판에 wr_{$di} 필드가 이미 존재 하거나 생성실패......ㅠㅠ<br><br>";
}
}
} else {
alert_close("니 머꼬? 콱");
}
//exit;
}
//여분필드삭제시
if ($fadmin =='fdel') {
if ($is_admin =='super') {
//필드삭제를 시작할번호 wr_삭제시작 번호
$adf = 11;
//필드삭제할 마지막번호 +1
$bdf = 101;
for ($di=$adf; $di<$bdf; $di++) {
$g4memoups ="ALTER TABLE $g4[write_prefix]$bo_table DROP wr_{$di}";
$resultups = @mysql_query($g4memoups) or mysql_error();
if ($resultups) {
echo "$bo_table 게시판에 wr_{$di} 필드삭제를 성공 하였습니다......ㅊㅋ<br><br>";
} else {
echo "$bo_table 게시판에 wr_{$di} 필드가 존재 하지않거나 삭제실패......ㅠㅠ<br><br>";
}
}
} else {
alert_close("니 머꼬? 콱");
}
// exit;
}
?>
<!-- 게시판 목록 시작 -->
<table width="<?=$width?>" align=center cellpadding=0 cellspacing=0><tr><td>
<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<table width="100%" cellspacing="0" cellpadding="0">
<tr height="25">
<? if ($is_category) { ?><form name="fcategory" method="get"><td width="50%"><select name=sca onchange="location='<?=$category_location?>'+this.value;"><option value=''>전체</option><?=$category_option?></select></td></form><? } ?>
<td align="right">
접수 총 <?=number_format($total_count)?>건
<? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border=0 align=absmiddle></a><?}?>
<? if ($admin_href) { ?><a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/admin_button.gif" title="관리자" width="63" height="22" border="0" align="absmiddle"></a><?}?></td>
</tr>
<tr><td height=5></td></tr>
</table>
<!-- 제목 -->
<form name="fboardlist" method="post" style="margin:0px;">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table width=100% cellpadding=0 cellspacing=0>
<!-- 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr height=28 align=center>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="694" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" height="4"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="5" height="120"></td>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_03.gif" width="157" height="2"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_06.gif" width="2" height="116"></td>
<td width="153" height="116">
<?
// 이미지 체크
$sql = " select bf_file, bf_datetime from $g4[board_file_table] where bo_table = '$bo_table' and wr_id = '{$list[$i][wr_id]}' and bf_type in (1,2,3) ";
$listFile = sql_fetch($sql);
// 이미지가 있다면.
if ($listFile['bf_file']) {
// 썸네일
$thumb = $thumb_path.'/'.$listFile['bf_file'];
// 원본
$thumb_file = $g4['path']."/data/file/".$bo_table."/".$listFile['bf_file'];
// 파일명
$img_filename = $listFile['bf_file'];
} else {
// 에디터
// 썸네일
$thumb = "";
// 원본
$thumb_file = "";
// 파일명
$img_filename = "";
}
// 썸네일이 없다면
if (!file_exists($thumb)) {
// 확장자 체크
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $thumb_file)) {
// 썸네일 생성. 가로, 세로, 원본경로, 생성경로
image_thumb($thumb_width, $thumb_height, $thumb_file, $thumb, true);
}
}
?>
<? if (file_exists($thumb) && $img_filename) { ?><img src="<?=$thumb?>" border="0"><? } else { ?>no image<? } ?>
</td>
<td><img src="../images/sell_08.gif" width="2" height="116"></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="../images/sell_25.gif" width="157" height="2"></td>
</tr>
</table></td>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="527" height="2"></td>
</tr>
<tr>
<td width="527" height="20">
<?
if($list[$i][wr_37]==2) echo "<img src='$board_skin_path/img/order2.gif' align='absmiddle' border='0'> ";
elseif($list[$i][wr_37]==3) echo "<img src='$board_skin_path/img/order3.gif' align='absmiddle' border='0'> ";
else echo "<img src='$board_skin_path/img/order1.gif' align='absmiddle' border='0'> ";
?>
<?
echo $nobr_begin;
echo $list[$i][reply];
echo $list[$i][icon_reply];
if ($is_category && $list[$i][ca_name]) {
echo "<span class=small><font color=gray>[<a href='{$list[$i][ca_name_href]}'>{$list[$i][ca_name]}</a>]</font></span> ";
}
$style = "";
if ($list[$i][is_notice]) $style = " style='font-weight:bold;'";
echo "<a href='{$list[$i][href]}' $style>";
echo $list[$i][subject];
echo "</a>";
if ($list[$i][comment_cnt])
echo " <a href=\"{$list[$i][comment_href]}\"><span style='font-family:Tahoma;font-size:10px;color:#EE5A00;'>{$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];
echo $nobr_end;
?>
</td>
</tr>
<tr>
<td width="527" height="64"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10"> </td>
<td><?=$list[$i][wr_content]?></td>
<td width="10"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td><img src="../images/sell_11.gif" width="527" height="4"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../images/sell_12.gif" width="8" height="28"></td>
<td width="66" height="28" align="center"><?=$list[$i][wr_12]?>평</td>
<td><img src="../images/sell_14.gif" width="3" height="28"></td>
<td width="65" height="28" align="center"><?=$list[$i][wr_13]?>층</td>
<td><img src="../images/sell_16.gif" width="3" height="28"></td>
<td width="63" height="28" align="center">PC <?=$list[$i][wr_14]?>대</td>
<td><img src="../images/sell_18.gif" width="3" height="28"></td>
<td width="98" height="28" align="center">보<?=$list[$i][wr_15]?>/월<?=$list[$i][wr_12]?></td>
<td><img src="../images/sell_20.gif" width="3" height="28"></td>
<td width="101" height="28" align="center">권<?=$list[$i][wr_17]?></td>
<td><img src="../images/sell_22.gif" width="3" height="28"></td>
<td width="109" height="28" align="center">매 <?=$list[$i][wr_19]?>만원</td>
<td><img src="../images/sell_24.gif" width="2" height="28"></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="../images/sell_26.gif" width="527" height="2"></td>
</tr>
</table></td>
<td width="5" height="120"></td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="4"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<?}?>
<? if (count($list) == 0) { echo "<tr><td colspan='$colspan' height=100 align=center>게시물이 없습니다.</td></tr>"; } ?>
</table>
</form>
<!-- 페이지 -->
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" align="center" height=30 valign=bottom>
<? if ($prev_part_href) { echo "<a href='$prev_part_href'><img src='$board_skin_path/img/btn_search_prev.gif' border=0 align=absmiddle title='이전검색'></a>"; } ?>
<?
// 기본으로 넘어오는 페이지를 아래와 같이 변환하여 이미지로도 출력할 수 있습니다.
//echo $write_pages;
$write_pages = str_replace("처음", "<img src='$board_skin_path/img/begin.gif' border='0' align='absmiddle' title='처음'>", $write_pages);
$write_pages = str_replace("이전", "<img src='$board_skin_path/img/prev.gif' border='0' align='absmiddle' title='이전'>", $write_pages);
$write_pages = str_replace("다음", "<img src='$board_skin_path/img/next.gif' border='0' align='absmiddle' title='다음'>", $write_pages);
$write_pages = str_replace("맨끝", "<img src='$board_skin_path/img/end.gif' border='0' align='absmiddle' title='맨끝'>", $write_pages);
$write_pages = preg_replace("/<span>([0-9]*)<\/span>/", "<b><font style=\"font-family:돋움; font-size:9pt; color:#797979\">$1</font></b>", $write_pages);
$write_pages = preg_replace("/<b>([0-9]*)<\/b>/", "<b><font style=\"font-family:돋움; font-size:9pt; color:orange;\">$1</font></b>", $write_pages);
?>
<?=$write_pages?>
<? if ($next_part_href) { echo "<a href='$next_part_href'><img src='$board_skin_path/img/btn_search_next.gif' border=0 align=absmiddle title='다음검색'></a>"; } ?>
</td>
</tr>
</table>
<!-- 링크 버튼, 검색 -->
<form name=fsearch method=get style="margin:0px;">
<input type=hidden name=bo_table value="<?=$bo_table?>">
<input type=hidden name=sca value="<?=$sca?>">
<table width=100% cellpadding=0 cellspacing=0>
<tr>
<td width="50%" height="40">
<? if ($list_href) { ?><a href="<?=$list_href?>"><img src="<?=$board_skin_path?>/img/btn_list.gif" border="0"></a><? } ?>
<? if ($write_href) { ?><a href="<?=$write_href?>"><img src="<?=$board_skin_path?>/img/btn_write.gif" border="0"></a><? } ?>
<? if ($is_checkbox) { ?>
<a href="javascript:select_delete();"><img src="<?=$board_skin_path?>/img/btn_select_delete.gif" border="0"></a>
<? } ?>
</td>
<td width="50%" align="right">
<select name=sfl>
<option value='wr_name,1'>이름</option>
<option value='wr_name,0'>이름(코)</option>
<option value='mb_id,1'>회원아이디</option>
<option value='mb_id,0'>회원아이디(코)</option>
</select><input name=stx maxlength=15 size=10 itemname="검색어" required value='<?=$stx?>'><select name=sop>
<option value=and>and</option>
<option value=or>or</option>
</select>
<input type=image src="<?=$board_skin_path?>/img/search_btn.gif" border=0 align=absmiddle></td>
</tr>
</table>
</form>
</td></tr></table>
<script language="JavaScript">
if ('<?=$sca?>') document.fcategory.sca.value = '<?=$sca?>';
if ('<?=$stx?>') {
document.fsearch.sfl.value = '<?=$sfl?>';
document.fsearch.sop.value = '<?=$sop?>';
}
</script>
<? if ($is_checkbox) { ?>
<script language="JavaScript">
function all_checked(sw) {
var f = document.fboardlist;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]")
f.elements[i].checked = sw;
}
}
function check_confirm(str) {
var f = document.fboardlist;
var chk_count = 0;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
alert(str + "할 게시물을 하나 이상 선택하세요.");
return false;
}
return true;
}
// 선택한 게시물 삭제
function select_delete() {
var f = document.fboardlist;
str = "삭제";
if (!check_confirm(str))
return;
if (!confirm("선택한 게시물을 정말 "+str+" 하시겠습니까?\n\n한번 "+str+"한 자료는 복구할 수 없습니다"))
return;
f.action = "./delete_all.php";
f.submit();
}
// 선택한 게시물 복사 및 이동
function select_copy(sw) {
var f = document.fboardlist;
if (sw == "copy")
str = "복사";
else
str = "이동";
if (!check_confirm(str))
return;
var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");
f.sw.value = sw;
f.target = "move";
f.action = "./move.php";
f.submit();
}
</script>
<? } ?>
<!-- 게시판 목록 끝 -->
너무 감사합니다.