답변주셔서 감사합니다. 답변 주신 김에 염치 불구하구 하나만 더 여쭤볼게요...
<?php
define('_INDEX_', true);
include_once('./_common.php');
// 초기화면 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
if ($config['cf_include_index'] && is_file(G5_PATH.'/'.$config['cf_include_index'])) {
include_once(G5_PATH.'/'.$config['cf_include_index']);
return; // 이 코드의 아래는 실행을 하지 않습니다.
}
if (G5_IS_MOBILE) {
include_once(G5_MOBILE_PATH.'/index.php');
return;
}
include_once('./_head.php');
?>
<table width="1200"border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="center" valign="top">
<?
// 소스 시작
$arr_option = array(1160,650);
echo latest("main_gal", "main", 5, 10, 1, $arr_option);
// latest("스킨폴더명", "게시판테이블", "데이터행", "제목글자수", "캐시타임", "옵션");
// 소스 끝
?>
</td>
</tr>
</table>
<table width="1200"border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="35"align="center" valign="top"></td>
</tr>
<tr>
<td width="20" align="center" valign="top"></td>
<td width="580" align="center" valign="top"><?php echo latest("slick", "21", 6, 50); ?></td>
<td width="580" align="center" valign="top"><?php echo latest("slick", "22", 6, 50); ?></td>
<td width="20" align="center" valign="top"></td>
</tr>
</table>
<?php
include_once('./_tail.php');
?>
위 처럼 작업을했는데; <?php echo latest("slick", "21", 6, 50); ?> 이소스를 여섯개 정도 따로 띄울려고합니다. 답변주신대로 따로 건드린 것은 없는데 코딩자체에 문제가 있는건지요?;;
아니면 해달 스킨 CSS나 skin파일에서 수정을 해줘야하는건가요?ㅠ