|
|
|
19년 전
|
조회 1,464
|
|
|
|
19년 전
|
조회 1,664
|
|
|
|
19년 전
|
조회 1,605
|
|
|
|
19년 전
|
조회 1,665
|
|
|
|
19년 전
|
조회 1,530
|
|
|
|
19년 전
|
조회 1,671
|
|
|
|
19년 전
|
조회 1,516
|
|
|
|
19년 전
|
조회 1,804
|
|
|
|
19년 전
|
조회 1,521
|
|
|
|
19년 전
|
조회 1,580
|
|
|
|
19년 전
|
조회 1,498
|
|
|
|
19년 전
|
조회 1,732
|
|
|
|
19년 전
|
조회 1,590
|
|
|
|
19년 전
|
조회 1,553
|
|
|
|
19년 전
|
조회 2,289
|
|
|
|
19년 전
|
조회 2,640
|
|
|
|
19년 전
|
조회 1,752
|
|
|
|
19년 전
|
조회 1,622
|
|
|
|
19년 전
|
조회 1,672
|
|
|
|
19년 전
|
조회 1,530
|
댓글 2개
이런 부분이 있죠.
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> ";
}
바꾼다면...
if ($is_category && $list[$i][ca_name]) {
if ($list[$i][ca_name] == '사과') {
$ca_img = "<img src='이미지주소1' border='0'>";
}
else if ($list[$i][ca_name] == '배') {
$ca_img = "<img src='이미지주소2' border='0'>";
}
else if ($list[$i][ca_name] == '감') {
$ca_img = "<img src='이미지주소3' border='0'>";
}
else if ($list[$i][ca_name] == '공지') {
$ca_img = "<img src='이미지주소4' border='0'>";
}
echo "<a href='{$list[$i][ca_name_href]}'>{$ca_img}</a> ";
}