안녕하세요?제가 잘모랄서 그런느데 왼쪽에 있는 베너를 메뉴처럼 쓰려고 하는데
페이지 정보
본문
댓글목록
광인님의 댓글
광인쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일
아래처럼 햇는데도 공백이 생기네요^.^;;
<?
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>
<?}
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>