오른쪽 퀵메뉴 문제해결 부탁드립니다.
페이지 정보
본문
댓글목록
제로님의 댓글
제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일
적용스킨 소스입니다..
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if (!$board[bo_8]) alert("해당 게시판 설정 : 여분 필드 8 에 목록에서 보여질 이미지의 가로 크기를 설정하십시오.");
if (!$board[bo_9]) alert("해당 게시판 설정 : 여분 필드 9 에 목록에서 보여질 이미지의 세로 크기를 설정하십시오.");
//if (!$board[bo_10]) alert("해당 게시판 설정 : 여분 필드 10 에 목록에서 보여질 한 줄당 가로 이미지 수를 설정하십시오.");
//$cols = $board[bo_10]; // 이미지 가로갯수 // 이미지 세로 갯수는 메인에서 지정(총 이미지 수)
//$col_width = (int)(99 / $cols);
$img_w = $board[bo_8]; // 이미지 가로
$img_h = $board[bo_9]; // 이미지 세로
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align="center">
<?
echo "<a href='{$list[$i][wr_1]}' target='{$list[$i][wr_2]}'>";
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image)) { ?>
<img src='<?=$g4[path]?>/data/file/<?=$bo_table?>/<?=$image?>' width='<?=$img_w?>' border='0'></a><br>
<?}
else if(preg_match("/\.(swf|wmv|asf)$/i", $image))
{ echo"<script>doc_write(flash_movie('$g4[path]/data/file/$bo_table/$image', 'flash$i', '$img_w', '$img_h', 'transparent'));</script>";}
?>
</td>
</tr>
<? } ?>
</table>