총괄적인 문제입니다. 굽신굽신. (__) 정보
총괄적인 문제입니다. 굽신굽신. (__)
본문
일단 개요는....
그룹에 상관없이 원하는 게시판을 한데모아 게시판에 상관없이 게시물을 뒤섞어서 렌덤으로 최신글을 추출하려 합니다.
그러던 찰나에 아래와 같이 팁이 있더군요.
http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=1774
하!지!만! 모든 내용을 수동으로 뽑아와야 하며 이미지는 아무리 해도 뽑아오는 방법을 모르겠더군요.
기존의 latest 함수를 살펴보면
for ($i=0; $row = sql_fetch_array($result); $i++)
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
요 두줄로 모든 데이터를 뽑아 올 수 있더군요.
실제로 common.lib.php 파일에 get_list 라는 함수가 있더군요.
여하튼 위 팁을 사용하면 게시물이 비정상적으로 표시가 되더군요.
1게시판은 2개의 2게시판은 5개의 3게시판은 1~ 개의 게시물이 고정적으로 출력이 되는겁니다.
그!래!서 위팁에서 수정을 가하여.. 기존의 코드를..
$sql = " select a.* from $g4[board_table] a, $g4[board_table] b
where
(a.bo_table = 'sd_bol' or
a.bo_table = 'gw_bol' or
a.bo_table = 'cc_bol' or
a.bo_table = 'jr_bol' or
a.bo_table = 'gs_bol' or
a.bo_table = 'jj_bol' ) and
a.bo_table = b.bo_table order by rand()
";
$boarder = sql_query($sql);
$board = sql_fetch($sql);
for ($i=0; $row = sql_fetch_array($boarder); $i++) {
$tmp_write_table = $g4['write_prefix'] . $row[bo_table]; // 게시판 테이블 전체이름
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by rand() desc limit 0, $rows ";
$result = sql_query($sql);
for ($i=0; $row = sql_fetch_array($result); $i++)
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
}
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
위와 같이 변경하였습니다.
그랬더니 역시 이미지는 여전히 엑박이고,
게시판의 게시물들이 렌덤으로 출력을 합니다. 다만.. 한 게시판의 게시물만 나온다는거죠.
렌덤으로 선택된 ?게시판의 게시물이 쫘르륵 나왔다가 F5를 눌러 새로고침을 하면 다시 렌덤으로 선택된 ?게시판의 게시물만 쫘르륵 나오는 형태죠. 이때 게시물은 위에서 rand()로 뽑았으니 렌덤으로 나오게 됩니다.
하지만 제가 원하는건 게시판에 상관없이 게시물이 렌덤으로 출력되게 하는겁니다.
여기서 가장 우선적으로 처리해야 문제는..
1. 여러개의 게시판을 불러올때 최신글 함수에서 이미지 추출 방법.
2. 게시판에 상관없이 게시물이 렌덤으로 나오는 쿼리를 작성하는 방법.
입니다.. 요점으로 말하면 위 2가지가 되겠지요.
http://www.sir.co.kr/bbs/board.php?bo_table=cm_free&wr_id=223045
그룹에 상관없이 원하는 게시판을 한데모아 게시판에 상관없이 게시물을 뒤섞어서 렌덤으로 최신글을 추출하려 합니다.
그러던 찰나에 아래와 같이 팁이 있더군요.
http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=1774
하!지!만! 모든 내용을 수동으로 뽑아와야 하며 이미지는 아무리 해도 뽑아오는 방법을 모르겠더군요.
기존의 latest 함수를 살펴보면
for ($i=0; $row = sql_fetch_array($result); $i++)
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
요 두줄로 모든 데이터를 뽑아 올 수 있더군요.
실제로 common.lib.php 파일에 get_list 라는 함수가 있더군요.
여하튼 위 팁을 사용하면 게시물이 비정상적으로 표시가 되더군요.
1게시판은 2개의 2게시판은 5개의 3게시판은 1~ 개의 게시물이 고정적으로 출력이 되는겁니다.
그!래!서 위팁에서 수정을 가하여.. 기존의 코드를..
$sql = " select a.* from $g4[board_table] a, $g4[board_table] b
where
(a.bo_table = 'sd_bol' or
a.bo_table = 'gw_bol' or
a.bo_table = 'cc_bol' or
a.bo_table = 'jr_bol' or
a.bo_table = 'gs_bol' or
a.bo_table = 'jj_bol' ) and
a.bo_table = b.bo_table order by rand()
";
$boarder = sql_query($sql);
$board = sql_fetch($sql);
for ($i=0; $row = sql_fetch_array($boarder); $i++) {
$tmp_write_table = $g4['write_prefix'] . $row[bo_table]; // 게시판 테이블 전체이름
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by rand() desc limit 0, $rows ";
$result = sql_query($sql);
for ($i=0; $row = sql_fetch_array($result); $i++)
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
}
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
위와 같이 변경하였습니다.
그랬더니 역시 이미지는 여전히 엑박이고,
게시판의 게시물들이 렌덤으로 출력을 합니다. 다만.. 한 게시판의 게시물만 나온다는거죠.
렌덤으로 선택된 ?게시판의 게시물이 쫘르륵 나왔다가 F5를 눌러 새로고침을 하면 다시 렌덤으로 선택된 ?게시판의 게시물만 쫘르륵 나오는 형태죠. 이때 게시물은 위에서 rand()로 뽑았으니 렌덤으로 나오게 됩니다.
하지만 제가 원하는건 게시판에 상관없이 게시물이 렌덤으로 출력되게 하는겁니다.
여기서 가장 우선적으로 처리해야 문제는..
1. 여러개의 게시판을 불러올때 최신글 함수에서 이미지 추출 방법.
2. 게시판에 상관없이 게시물이 렌덤으로 나오는 쿼리를 작성하는 방법.
입니다.. 요점으로 말하면 위 2가지가 되겠지요.
http://www.sir.co.kr/bbs/board.php?bo_table=cm_free&wr_id=223045
댓글 전체
일단 여러개의 게시판을 불러오는 쿼리는 문제가 없는것 같습니다.
문제는....
$tmp_write_table = $g4['write_prefix'] . $row[bo_table];
위 부분에서 그누함수로써 각 게시판의 write 테이블을 뽑아옵니다.
여기서. 한개의 게시판을 집어넣고 출력을 한 후 다시 for문을 돌아서 다른 게시판을 집어 넣는겁니다. 그러니 게시물이 뒤섞이지 않고 게시판별로 출력이 되는거 아닐까요?
$tmp_write_table <- 이 변수 하나에 모든 게시판의 write 테이블이 들어가게 할 수 있다면 게시판에 상관없이 게시물이 렌덤으로 나오지 않을까 생각해봅니다.
이미지 부분은 도저히 모르겠네요....
문제는....
$tmp_write_table = $g4['write_prefix'] . $row[bo_table];
위 부분에서 그누함수로써 각 게시판의 write 테이블을 뽑아옵니다.
여기서. 한개의 게시판을 집어넣고 출력을 한 후 다시 for문을 돌아서 다른 게시판을 집어 넣는겁니다. 그러니 게시물이 뒤섞이지 않고 게시판별로 출력이 되는거 아닐까요?
$tmp_write_table <- 이 변수 하나에 모든 게시판의 write 테이블이 들어가게 할 수 있다면 게시판에 상관없이 게시물이 렌덤으로 나오지 않을까 생각해봅니다.
이미지 부분은 도저히 모르겠네요....
코드를 새로 만드는게 나아 보입니다.
아래와 같이 해보세요.
<?
$bo_table = array();
$bo_table[] = "sd_bol";
$bo_table[] = "gw_bol";
$bo_table[] = "cc_bol";
$bo_table[] = "jr_bol";
$bo_table[] = "gs_bol";
$bo_table[] = "jj_bol";
$idx = 0;
for ($i=0; $i<count($bo_table); $i++)
{
$board = sql_fetch(" select * from {$g4['board_table']} where bo_table = '{$bo_table[$i]}' ");
$tmp_write_table = $g4['write_prefix'] . $bo_table[$i];
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by rand() desc limit 0, $rows ";
$qry = sql_query($sql);
while($row = sql_fetch_array($qry))
$list[$idx++] = get_list($row, $board, $latest_skin_path, $subject_len);
}
shuffle($list);
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
?>
아래와 같이 해보세요.
<?
$bo_table = array();
$bo_table[] = "sd_bol";
$bo_table[] = "gw_bol";
$bo_table[] = "cc_bol";
$bo_table[] = "jr_bol";
$bo_table[] = "gs_bol";
$bo_table[] = "jj_bol";
$idx = 0;
for ($i=0; $i<count($bo_table); $i++)
{
$board = sql_fetch(" select * from {$g4['board_table']} where bo_table = '{$bo_table[$i]}' ");
$tmp_write_table = $g4['write_prefix'] . $bo_table[$i];
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by rand() desc limit 0, $rows ";
$qry = sql_query($sql);
while($row = sql_fetch_array($qry))
$list[$idx++] = get_list($row, $board, $latest_skin_path, $subject_len);
}
shuffle($list);
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
?>
와우!! 역시 개발자님이십니다! ㅡㅜ
이제 게시판에 상관없이 게시물이 렌덤으로 나옵니다.
헌데 가장 중요한 이미지는 여전히 엑박이네요. ㅡㅜ
이제 게시판에 상관없이 게시물이 렌덤으로 나옵니다.
헌데 가장 중요한 이미지는 여전히 엑박이네요. ㅡㅜ
스킨 파일을 올려주셔야 확인이 가능합니다.
저기는 이미지 출력 부분이 없어요..
저기는 이미지 출력 부분이 없어요..
그런데 하나의 게시판을 보통 latest 함수를 사용하면 이미지 표시가 잘됩니다.
여러개의 게시판을 추출해서 그러는 걸까요....
get_list 에서 파일 거시기를 뽑아오던데요.
일단 최신글 스킨 코드입니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
여러개의 게시판을 추출해서 그러는 걸까요....
get_list 에서 파일 거시기를 뽑아오던데요.
일단 최신글 스킨 코드입니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
<? for ($i=0; $i<count($list); $i++) { ?>
코드 밑에
<? $bo_table = $list[$i][bo_table]; ?>
코드를 추가해보세요.
코드 밑에
<? $bo_table = $list[$i][bo_table]; ?>
코드를 추가해보세요.
알려주신 대로 첫번째 표시줄과 두번째 표시줄의 for 문을 각각.
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
해보았습니다만 여전히 엑박입니다.
index.php 에서
echo latest_test("list_main", 8, 20);
이렇게 불러왔으며
알려 주신 코드의 $bo_table = array(); 윗부분은 아래와 같습니다.
function latest_test($skin_dir="", $bo_table, $rows=10, $subject_len=40)
{
global $config;
global $g4;
if ($skin_dir)
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
else
$latest_skin_path = "$g4[path]/skin/latest/basic";
$bo_table = array();
~~ .... ~~
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
해보았습니다만 여전히 엑박입니다.
index.php 에서
echo latest_test("list_main", 8, 20);
이렇게 불러왔으며
알려 주신 코드의 $bo_table = array(); 윗부분은 아래와 같습니다.
function latest_test($skin_dir="", $bo_table, $rows=10, $subject_len=40)
{
global $config;
global $g4;
if ($skin_dir)
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
else
$latest_skin_path = "$g4[path]/skin/latest/basic";
$bo_table = array();
~~ .... ~~
수정하신 스킨파일의 풀 소스와 해당 url 을 알려주세요.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
URL : http://www.iamkoreatour.com
입니다.
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image) && file_exists("$g4[path]/data/file/$bo_table/$image")) {
echo "<a href='{$list[$i][href]}'><img src='$g4[path]/data/file/$bo_table/$image' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
URL : http://www.iamkoreatour.com
입니다.
아래처럼 바꿔보셔요..
그리고 스킨디렉토리/img/ 에 no_img.gif 파일이 없네요..ㅎㅎ
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
그리고 스킨디렉토리/img/ 에 no_img.gif 파일이 없네요..ㅎㅎ
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
우선 바로 위에서 가르쳐 주신 <? $image.... ?> 코드를 적용하기 전에 no_img.gif 파일 넣고 테스트 해본 결과 이미지가 모두 no_img.gif의 이미지가 표시 되었습니다.
<? $bo_table = $list[$i][bo_table]; ?>
위 코드를 빼고 테스트 해도 모두 no_img.gif의 이미지가 표시 됩니다.
그리고 나서 알려주신 <? $image.... ?> 코드를 적용해 보았습니다.
아래는 적용한 스킨의 풀소스입니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
정정합니다. 엑박은 사라지고 모두 no_img.gif 이미지를 표시하고 있습니다.
<? $bo_table = $list[$i][bo_table]; ?>
위 코드를 빼고 테스트 해도 모두 no_img.gif의 이미지가 표시 됩니다.
그리고 나서 알려주신 <? $image.... ?> 코드를 적용해 보았습니다.
아래는 적용한 스킨의 풀소스입니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_w = '100'; // 이미지 가로 세로 사이즈
$img_h = '100';
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb';
?>
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
<table width='430' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td width='5' height='5'><img src='<?=$latest_skin_path?>/img/neto1.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto2.gif'></td>
<td width='5'><img src='<?=$latest_skin_path?>/img/neto3.gif' width='5' height='5' border='0'></td>
</tr>
<tr>
<td background='<?=$latest_skin_path?>/img/neto4.gif'></td>
<td align='center' valign='top' bgcolor='#FFFFFF'><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="430" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 5px 5px 5px;"><font color="#003366"><strong><?=$board[bo_subject]?></strong></font></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1" bgcolor="#E1E1DD"></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td><div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<!-- 첫번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i <= 3) { ?>
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 첫번째줄. 게시물 4개 출력 끝 -->
<tr><td> </td></tr>
<!-- 두번째줄. 게시물 4개 출력 시작 -->
<tr style="padding-left: 5px;">
<? for ($i=0; $i<count($list); $i++) { ?>
<? $bo_table = $list[$i][bo_table]; ?>
<?
$ca_name = $list[$i][ca_name];
$ca_img = "";
if($ca_name == "테스트")
$ca_img = "테스트";
elseif ($ca_name == '테스트2') {
$ca_img = "테스트2"; }
elseif ($ca_name == '테스트3') {
$ca_img = "테스트3"; }
elseif ($ca_name == '테스트4') {
$ca_img = "테스트4"; }
?>
<? if ($i >= 4 and $i <= 7) { ?> <!-- 포인트 -->
<td width="100" align="center" OnMouseOver="this.style.backgroundColor='#F5F5F5';" OnMouseOut="this.style.backgroundColor='#FFFFFF'" style="padding-top: 3px;">
<?
$image = $list[$i][file][0][file]; // 첫번째 파일이 이미지라면
$file = "$g4[path]/data/file/$bo_table/$image";
if ($list[$i][file][0][image_width] > 0 && file_exists($file)) {
echo "<a href='{$list[$i][href]}'><img src='{$file}' width='{$img_w}' height='{$img_h}' border='0'></a>";
} else {
echo "<a href='{$list[$i][href]}'><img src='$latest_skin_path/img/no_img.gif' width='{$img_w}' height='{$img_h}' border='0'></a>";
}
?>
<?=$ca_img?> <a href='<?=$list[$i][href]?>'><?=$list[$i][subject]?></a>
</td>
<td width="10"> </td>
<? } ?>
<? } ?>
</tr>
<!-- 두번째줄. 게시물 4개 출력 끝 -->
</table>
</table></td>
<td background='<?=$latest_skin_path?>/img/neto5.gif'></td>
</tr>
<tr>
<td height='5'><img src='<?=$latest_skin_path?>/img/neto6.gif' width='5' height='5' border='0'></td>
<td background='<?=$latest_skin_path?>/img/neto7.gif'></td>
<td><img src='<?=$latest_skin_path?>/img/neto8.gif' width='5' height='5' border='0'></td>
</tr>
</table>
정정합니다. 엑박은 사라지고 모두 no_img.gif 이미지를 표시하고 있습니다.
추가로 $image = $list[$i][file][0][file]; 부분 위에 echo $file; 로 출력을 해봤습니다.
결과는 ./data/file//2106296364_217aff2f_8.jpg 요런식으로 출력이 됩니다.
중간에 $bo_table 부분이 출력되지 않고 있습니다.
또한, 가장 첫번째 이미지는 아무 글씨도 출력되지 않았습니다.
두번째 이미지 부터 ./data .... 이 글씨가 출력이 되더군요.
<? $bo_table = $list[$i][bo_table]; ?>
위 코드를 빼버리면 ./data/file/Array/ .... 요런식으로 출력이 됩니다.
결과는 ./data/file//2106296364_217aff2f_8.jpg 요런식으로 출력이 됩니다.
중간에 $bo_table 부분이 출력되지 않고 있습니다.
또한, 가장 첫번째 이미지는 아무 글씨도 출력되지 않았습니다.
두번째 이미지 부터 ./data .... 이 글씨가 출력이 되더군요.
<? $bo_table = $list[$i][bo_table]; ?>
위 코드를 빼버리면 ./data/file/Array/ .... 요런식으로 출력이 됩니다.
이긍.. 아래처럼 해보세요.ㅎㅎ
$image = $list[$i][file][0][file];
$file = "{$list[$i][file][0][path]}/{$image}";
$image = $list[$i][file][0][file];
$file = "{$list[$i][file][0][path]}/{$image}";
드!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
디!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
어!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
드디어 이미지가 튀어나왔습니다!!!!!! 정말 감사드립니다. ㅡㅜ 고된 노력끝에 드디어..
곱슬님 사랑합니다~ ㅡ_ㅡa 찰싹.. 부비부비.. 아잉.. ;;;; ㅌㅌㅌ;;
너무너무 감사드립니다. ㅡㅜ (__)
주소와 원하시는 책을 쪽지로 보내주시면 내일은 주말이니까 다음주 안으로 보내드리겠습니다. (__)
택배비는.. 선불로.. ;; 무게가 좀 나갈려나.. 여튼!! 감사드려요!!
정말정말 감사합니다. ㅜㅜ
나중에.. 문제 있을리는 없겠지만.. 문제가 발생하면.. 또.. 퍽!!!!
공짜로 안물어 볼께요..ㅡㅜ
디!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
어!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
드디어 이미지가 튀어나왔습니다!!!!!! 정말 감사드립니다. ㅡㅜ 고된 노력끝에 드디어..
곱슬님 사랑합니다~ ㅡ_ㅡa 찰싹.. 부비부비.. 아잉.. ;;;; ㅌㅌㅌ;;
너무너무 감사드립니다. ㅡㅜ (__)
주소와 원하시는 책을 쪽지로 보내주시면 내일은 주말이니까 다음주 안으로 보내드리겠습니다. (__)
택배비는.. 선불로.. ;; 무게가 좀 나갈려나.. 여튼!! 감사드려요!!
정말정말 감사합니다. ㅜㅜ
나중에.. 문제 있을리는 없겠지만.. 문제가 발생하면.. 또.. 퍽!!!!
공짜로 안물어 볼께요..ㅡㅜ
잘되신다니 다행입니다. ㅋㅋ
책은 회사로 보내주시면 감사하겠습니다. ^^
서평보니 아주 재미있을 것 같아요. ㅎㅎ
책은 회사로 보내주시면 감사하겠습니다. ^^
서평보니 아주 재미있을 것 같아요. ㅎㅎ
회사라면
이 주소인가요?

이 주소인가요?
네.. 사이트 하단에 있는 주소 맞습니다.