채택완료

구글맵스킨에 kml 레이어 넣기

안녕하세요. 

점점 산으로 가는 klee입니다... 

정적인 손님께서 배포하신 구글 지도형 게시판에 

 http://sir.kr/g5_skin/9879?page=2 

제가 임의로 지정한 구글 kml레이어를 덮으려고 하는데요. 

아래가 스크립트인데 레이어가 덮여저서 나오지가 않는군요.. 

아래와 같은 스타일로 구글지도에 kml레이어를 표현하려고 합니다. 그상테로 정적인손님의 구글마커 게시판 기능을 사용하려고 하구요 스크립트를 조작해서 넣어봐도 잘 되지 않는군요. 

무엇이 문제인지 한번 봐주시면 감사하겠습니다. 

구글맵 kml레이어 예제 

Copy
<!DOCTYPE html><html>  <head>    <meta name="viewport" content="initial-scale=1.0">    <meta charset="utf-8">    <title>KML Layers</title>    <style>      html, body {        height: 100%;        margin: 0;        padding: 0;      }      #map {        height: 100%;      }    </style>  </head>  <body>    <div id="map"></div>    <script>       function initMap() {        var map = new google.maps.Map(document.getElementById('map'), {          zoom: 11,          center: {lat: 41.876, lng: -87.624}        });         var ctaLayer = new google.maps.KmlLayer({          url: 'http://googlemaps.github.io/js-v2-samples/ggeoxml/cta.kml',          map: map        });      }    </script>    <script async defer    src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&callback=initMap">    </script>  </body></html>
 

 

 

아래것이 정적인손님원본 

Copy
<?phpif (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가  // 선택옵션으로 인해 셀합치기가 가변적으로 변함$colspan = 5; if ($is_checkbox) $colspan++;if ($is_good) $colspan++;if ($is_nogood) $colspan++; // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0); ?><style>#mgmap { width: 100%; height:450px; margin:0; padding: 0px; border: 0px; }</style><h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>  <!-- } 배너이미지입니다.--><div style="width:210px; height:50px; float:none">  <img src="<?php echo G5_IMG_URL ?>/<?php echo $board['bo_table']?>.gif">  </a>      </div>    <!--지도 시작 --> <div id="mgmap"></div><br /> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&callback=initMap"></script><!-- 수산나님 도움 지도에 동해로 나오게 변경 --> <script src="<?php echo $board_skin_url ?>/js/markerclusterer.js" type="text/javascript"></script> <script type="text/javascript"> var map;var ymakcur;var ymakcurOptions = {gridSize: 20, maxZoom: 17};var infowindow = new google.maps.InfoWindow();var geocoder = new google.maps.Geocoder(); var bounds = new google.maps.LatLngBounds();var address = new Array(	<? for ($i=0; $i<count($list); $i++) {	$ylat=($list[$i][wr_3]);	$ylng=($list[$i][wr_4]);	?>	"<?=$ylat?>,<?=$ylng?>"	<? if ($i==count($list)-1) continue; ?>	,	<? } ?>);var content = new Array(	<? for ($i=0; $i<count($list); $i++) {	$name1=strip_tags($list[$i][wr_subject]);	$address=strip_tags($list[$i][wr_2]);	$bylink=($list[$i][wr_id]);	$mtem="<table><tr><td colspan=2 width=300><a href={$list[$i][href]}><h3>$name1</h3></a></td></tr><tr><td width=70>주소: </td><td width=230>{$address}</td></tr></table>";	?>	"<?=$mtem?>"	<? if ($i==count($list)-1) continue; ?>	,	<? } ?>); var min = .999999;var max = 1.000001; function createMarker(latlng,text) {	var marker = new google.maps.Marker({    position: latlng,    map: map  	});    bounds.extend(latlng);  	map.fitBounds(bounds); 	var allMarkers = ymakcur.getMarkers(); 	if (allMarkers.length != 0) {    	for (i=0; i < allMarkers.length; i++) {			var existingMarker = allMarkers[i];			var pos = existingMarker.getPosition();			if (latlng.equals(pos)) {				text = text + "<hr>" + content[i];			}		}	} 	google.maps.event.addListener(marker, 'click', function() {		infowindow.close();		infowindow.setContent(text);		infowindow.open(map,marker);		});	ymakcur.addMarker(marker);	return marker;} var options = {	zoom: 4,	mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('mgmap'), options);  var ycmarkers = [];ymakcur = new MarkerClusterer(map, [], ymakcurOptions);for (i=0; i<address.length; i++) {	var ymSarang = address[i];	var jumcok = ymSarang.split(",");	var latlng = new google.maps.LatLng(parseFloat(jumcok[0]),parseFloat(jumcok[1]));	ycmarkers.push(createMarker(latlng,content[i]));} zoomChangeBoundsListener = google.maps.event.addListener(map, "bounds_changed",function(event){	if(this.getZoom() > 20) 	this.setZoom(16); 	google.maps.event.removeListener(zoomChangeBoundsListener); });			</script><!--지도 끝 -->  <!-- 게시판 목록 시작 { --><div id="bo_list" style="width:<?php echo $width; ?>">     <!-- 게시판 카테고리 시작 { -->    <?php if ($is_category) { ?>    <nav id="bo_cate">        <h2><?php echo $board['bo_subject'] ?> 카테고리</h2>        <ul id="bo_cate_ul">            <?php echo $category_option ?>        </ul>    </nav>    <?php } ?>    <!-- } 게시판 카테고리 끝 -->     <!-- 게시판 페이지 정보 및 버튼 시작 { -->    <div class="bo_fx">        <div id="bo_list_total">            <span>Total <?php echo number_format($total_count) ?>건</span>            <?php echo $page ?> 페이지                                </div>        <div>        <? /*$alllist = sql_query("select * from g5_write_".$board[bo_table]);for($i=0;$ylist=sql_fetch_array($alllist);$i++){	echo ($i+1)." $ylist[wr_3] <br/>";} */ ?>        </div>         <?php if ($rss_href || $write_href) { ?>        <ul class="btn_bo_user">            <?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01">RSS</a></li><?php } ?>            <?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin">관리자</a></li><?php } ?>            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>        </ul>        <?php } ?>    </div>       <!-- } 게시판 페이지 정보 및 버튼 끝 -->     <form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">    <input type="hidden" name="sfl" value="<?php echo $sfl ?>">    <input type="hidden" name="stx" value="<?php echo $stx ?>">    <input type="hidden" name="spt" value="<?php echo $spt ?>">    <input type="hidden" name="sca" value="<?php echo $sca ?>">    <input type="hidden" name="page" value="<?php echo $page ?>">    <input type="hidden" name="sw" value="">      <div class="tbl_head01 tbl_wrap">        <table>        <caption><?php echo $board['bo_subject'] ?> 목록</caption>        <thead>        <tr>            <th scope="col">번호</th>            <?php if ($is_checkbox) { ?>            <th scope="col">                <label for="chkall" class="sound_only">현재 페이지 게시물 전체</label>                <input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);">            </th>            <?php } ?>            <th scope="col">제목</th>            <th scope="col">글쓴이</th>            <th scope="col"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜</a></th>            <th scope="col"><?php echo subject_sort_link('wr_hit', $qstr2, 1) ?>조회</a></th>            <?php if ($is_good) { ?><th scope="col"><?php echo subject_sort_link('wr_good', $qstr2, 1) ?>추천</a></th><?php } ?>            <?php if ($is_nogood) { ?><th scope="col"><?php echo subject_sort_link('wr_nogood', $qstr2, 1) ?>비추천</a></th><?php } ?>        </tr>        </thead>        <tbody>        <?php        for ($i=0; $i<count($list); $i++) {         ?>        <tr class="<?php if ($list[$i]['is_notice']) echo "bo_notice"; ?>">            <td class="td_num">            <?php            if ($list[$i]['is_notice']) // 공지사항                echo '<strong>공지</strong>';            else if ($wr_id == $list[$i]['wr_id'])                echo "<span class=\"bo_current\">열람중</span>";            else                echo $list[$i]['num'];           ?>            </td>            <?php if ($is_checkbox) { ?>            <td class="td_chk">                <label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>                <input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">            </td>            <?php } ?>            <td class="td_subject">                <?php                echo $list[$i]['icon_reply'];                if ($is_category && $list[$i]['ca_name']) {                 ?>                <a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></a>                <?php } ?>                 <a href="<?php echo $list[$i]['href'] ?>">                    <?php echo $list[$i]['subject'] ?>                    <?php if ($list[$i]['comment_cnt']) { ?><span class="sound_only">댓글</span><?php echo $list[$i]['comment_cnt']; ?><span class="sound_only">개</span><?php } ?>                </a>                 <?php                // if ($list[$i]['link']['count']) { echo '['.$list[$i]['link']['count']}.']'; }                // if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }                 if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];                if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];                if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file'];                if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link'];                if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];                  ?>            </td>            <td class="td_name sv_use"><?php echo $list[$i]['name'] ?></td>            <td class="td_date"><?php echo $list[$i]['datetime2'] ?></td>            <td class="td_num"><?php echo $list[$i]['wr_hit'] ?></td>            <?php if ($is_good) { ?><td class="td_num"><?php echo $list[$i]['wr_good'] ?></td><?php } ?>            <?php if ($is_nogood) { ?><td class="td_num"><?php echo $list[$i]['wr_nogood'] ?></td><?php } ?>        </tr>        <?php } ?>        <?php if (count($list) == 0) { echo '<tr><td colspan="'.$colspan.'" class="empty_table">게시물이 없습니다.</td></tr>'; } ?>        </tbody>        </table>    </div>     <?php if ($list_href || $is_checkbox || $write_href) { ?>    <div class="bo_fx">        <?php if ($is_checkbox) { ?>        <ul class="btn_bo_adm">            <li><input type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value"></li>            <li><input type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value"></li>            <li><input type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value"></li>        </ul>        <?php } ?>         <?php if ($list_href || $write_href) { ?>        <ul class="btn_bo_user">            <?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01">목록</a></li><?php } ?>            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>        </ul>        <?php } ?>    </div>    <?php } ?>    </form></div> <?php if($is_checkbox) { ?><noscript><p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p></noscript><?php } ?> <!-- 페이지 --><?php echo $write_pages;  ?> <!-- 게시판 검색 시작 { --><fieldset id="bo_sch">    <legend>게시물 검색</legend>     <form name="fsearch" method="get">    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">    <input type="hidden" name="sca" value="<?php echo $sca ?>">    <input type="hidden" name="sop" value="and">    <label for="sfl" class="sound_only">검색대상</label>    <select name="sfl" id="sfl">        <option value="wr_subject"<?php echo get_selected($sfl, 'wr_subject', true); ?>>제목</option>        <option value="wr_content"<?php echo get_selected($sfl, 'wr_content'); ?>>내용</option>        <option value="wr_subject||wr_content"<?php echo get_selected($sfl, 'wr_subject||wr_content'); ?>>제목+내용</option>        <option value="mb_id,1"<?php echo get_selected($sfl, 'mb_id,1'); ?>>회원아이디</option>        <option value="mb_id,0"<?php echo get_selected($sfl, 'mb_id,0'); ?>>회원아이디(코)</option>        <option value="wr_name,1"<?php echo get_selected($sfl, 'wr_name,1'); ?>>글쓴이</option>        <option value="wr_name,0"<?php echo get_selected($sfl, 'wr_name,0'); ?>>글쓴이(코)</option>    </select>    <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>    <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15">    <input type="submit" value="검색" class="btn_submit">    </form></fieldset><!-- } 게시판 검색 끝 --> <?php if ($is_checkbox) { ?><script>function all_checked(sw) {    var f = document.fboardlist;     for (var i=0; i<f.length; i++) {        if (f.elements[i].name == "chk_wr_id[]")            f.elements[i].checked = sw;    }} function fboardlist_submit(f) {    var chk_count = 0;     for (var i=0; i<f.length; i++) {        if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)            chk_count++;    }     if (!chk_count) {        alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");        return false;    }     if(document.pressed == "선택복사") {        select_copy("copy");        return;    }     if(document.pressed == "선택이동") {        select_copy("move");        return;    }     if(document.pressed == "선택삭제") {        if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))            return false;         f.removeAttribute("target");        f.action = "./board_list_update.php";    }     return true;} // 선택한 게시물 복사 및 이동function select_copy(sw) {    var f = document.fboardlist;     if (sw == "copy")        str = "복사";    else        str = "이동";     var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");     f.sw.value = sw;    f.target = "move";    f.action = "./move.php";    f.submit();}</script><?php } ?> <!-- } 게시판 목록 끝 -->

 

아래것은  합친 것. 

Copy
<?phpif (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가  // 선택옵션으로 인해 셀합치기가 가변적으로 변함$colspan = 5; if ($is_checkbox) $colspan++;if ($is_good) $colspan++;if ($is_nogood) $colspan++; // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0); ?><style>#mgmap { width: 100%; height:450px; margin:0; padding: 0px; border: 0px; }</style><h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>  <!-- } 배너이미지입니다.--><div style="width:210px; height:50px; float:none">  <img src="<?php echo G5_IMG_URL ?>/<?php echo $board['bo_table']?>.gif">  </a>      </div>    <!--지도 시작 --> <div id="mgmap"></div><br /> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&callback=initMap"></script><!-- 수산나님 도움 지도에 동해로 나오게 변경 -->    <!-- kml레이어 요부분만 넣었습니다. -->      <script>       function initMap() {         var ctaLayer = new google.maps.KmlLayer({          url: 'http://googlemaps.github.io/js-v2-samples/ggeoxml/cta.kml',          map: map        });      }    </script>    <!-- kml레이어 끝. -->    <script src="<?php echo $board_skin_url ?>/js/markerclusterer.js" type="text/javascript"></script> <script type="text/javascript"> var map;var ymakcur;var ymakcurOptions = {gridSize: 20, maxZoom: 17};var infowindow = new google.maps.InfoWindow();var geocoder = new google.maps.Geocoder(); var bounds = new google.maps.LatLngBounds();var address = new Array(	<? for ($i=0; $i<count($list); $i++) {	$ylat=($list[$i][wr_3]);	$ylng=($list[$i][wr_4]);	?>	"<?=$ylat?>,<?=$ylng?>"	<? if ($i==count($list)-1) continue; ?>	,	<? } ?>);var content = new Array(	<? for ($i=0; $i<count($list); $i++) {	$name1=strip_tags($list[$i][wr_subject]);	$address=strip_tags($list[$i][wr_2]);	$bylink=($list[$i][wr_id]);	$mtem="<table><tr><td colspan=2 width=300><a href={$list[$i][href]}><h3>$name1</h3></a></td></tr><tr><td width=70>주소: </td><td width=230>{$address}</td></tr></table>";	?>	"<?=$mtem?>"	<? if ($i==count($list)-1) continue; ?>	,	<? } ?>); var min = .999999;var max = 1.000001; function createMarker(latlng,text) {	var marker = new google.maps.Marker({    position: latlng,    map: map  	});    bounds.extend(latlng);  	map.fitBounds(bounds); 	var allMarkers = ymakcur.getMarkers(); 	if (allMarkers.length != 0) {    	for (i=0; i < allMarkers.length; i++) {			var existingMarker = allMarkers[i];			var pos = existingMarker.getPosition();			if (latlng.equals(pos)) {				text = text + "<hr>" + content[i];			}		}	} 	google.maps.event.addListener(marker, 'click', function() {		infowindow.close();		infowindow.setContent(text);		infowindow.open(map,marker);		});	ymakcur.addMarker(marker);	return marker;} var options = {	zoom: 4,	mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('mgmap'), options);  var ycmarkers = [];ymakcur = new MarkerClusterer(map, [], ymakcurOptions);for (i=0; i<address.length; i++) {	var ymSarang = address[i];	var jumcok = ymSarang.split(",");	var latlng = new google.maps.LatLng(parseFloat(jumcok[0]),parseFloat(jumcok[1]));	ycmarkers.push(createMarker(latlng,content[i]));} zoomChangeBoundsListener = google.maps.event.addListener(map, "bounds_changed",function(event){	if(this.getZoom() > 20) 	this.setZoom(16); 	google.maps.event.removeListener(zoomChangeBoundsListener); });			</script><!--지도 끝 -->  <!-- 게시판 목록 시작 { --><div id="bo_list" style="width:<?php echo $width; ?>">     <!-- 게시판 카테고리 시작 { -->    <?php if ($is_category) { ?>    <nav id="bo_cate">        <h2><?php echo $board['bo_subject'] ?> 카테고리</h2>        <ul id="bo_cate_ul">            <?php echo $category_option ?>        </ul>    </nav>    <?php } ?>    <!-- } 게시판 카테고리 끝 -->     <!-- 게시판 페이지 정보 및 버튼 시작 { -->    <div class="bo_fx">        <div id="bo_list_total">            <span>Total <?php echo number_format($total_count) ?>건</span>            <?php echo $page ?> 페이지                                </div>        <div>        <? /*$alllist = sql_query("select * from g5_write_".$board[bo_table]);for($i=0;$ylist=sql_fetch_array($alllist);$i++){	echo ($i+1)." $ylist[wr_3] <br/>";} */ ?>        </div>         <?php if ($rss_href || $write_href) { ?>        <ul class="btn_bo_user">            <?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01">RSS</a></li><?php } ?>            <?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin">관리자</a></li><?php } ?>            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>        </ul>        <?php } ?>    </div>       <!-- } 게시판 페이지 정보 및 버튼 끝 -->     <form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">    <input type="hidden" name="sfl" value="<?php echo $sfl ?>">    <input type="hidden" name="stx" value="<?php echo $stx ?>">    <input type="hidden" name="spt" value="<?php echo $spt ?>">    <input type="hidden" name="sca" value="<?php echo $sca ?>">    <input type="hidden" name="page" value="<?php echo $page ?>">    <input type="hidden" name="sw" value="">      <div class="tbl_head01 tbl_wrap">        <table>        <caption><?php echo $board['bo_subject'] ?> 목록</caption>        <thead>        <tr>            <th scope="col">번호</th>            <?php if ($is_checkbox) { ?>            <th scope="col">                <label for="chkall" class="sound_only">현재 페이지 게시물 전체</label>                <input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);">            </th>            <?php } ?>            <th scope="col">제목</th>            <th scope="col">글쓴이</th>            <th scope="col"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜</a></th>            <th scope="col"><?php echo subject_sort_link('wr_hit', $qstr2, 1) ?>조회</a></th>            <?php if ($is_good) { ?><th scope="col"><?php echo subject_sort_link('wr_good', $qstr2, 1) ?>추천</a></th><?php } ?>            <?php if ($is_nogood) { ?><th scope="col"><?php echo subject_sort_link('wr_nogood', $qstr2, 1) ?>비추천</a></th><?php } ?>        </tr>        </thead>        <tbody>        <?php        for ($i=0; $i<count($list); $i++) {         ?>        <tr class="<?php if ($list[$i]['is_notice']) echo "bo_notice"; ?>">            <td class="td_num">            <?php            if ($list[$i]['is_notice']) // 공지사항                echo '<strong>공지</strong>';            else if ($wr_id == $list[$i]['wr_id'])                echo "<span class=\"bo_current\">열람중</span>";            else                echo $list[$i]['num'];           ?>            </td>            <?php if ($is_checkbox) { ?>            <td class="td_chk">                <label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>                <input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">            </td>            <?php } ?>            <td class="td_subject">                <?php                echo $list[$i]['icon_reply'];                if ($is_category && $list[$i]['ca_name']) {                 ?>                <a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></a>                <?php } ?>                 <a href="<?php echo $list[$i]['href'] ?>">                    <?php echo $list[$i]['subject'] ?>                    <?php if ($list[$i]['comment_cnt']) { ?><span class="sound_only">댓글</span><?php echo $list[$i]['comment_cnt']; ?><span class="sound_only">개</span><?php } ?>                </a>                 <?php                // if ($list[$i]['link']['count']) { echo '['.$list[$i]['link']['count']}.']'; }                // if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }                 if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];                if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];                if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file'];                if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link'];                if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];                  ?>            </td>            <td class="td_name sv_use"><?php echo $list[$i]['name'] ?></td>            <td class="td_date"><?php echo $list[$i]['datetime2'] ?></td>            <td class="td_num"><?php echo $list[$i]['wr_hit'] ?></td>            <?php if ($is_good) { ?><td class="td_num"><?php echo $list[$i]['wr_good'] ?></td><?php } ?>            <?php if ($is_nogood) { ?><td class="td_num"><?php echo $list[$i]['wr_nogood'] ?></td><?php } ?>        </tr>        <?php } ?>        <?php if (count($list) == 0) { echo '<tr><td colspan="'.$colspan.'" class="empty_table">게시물이 없습니다.</td></tr>'; } ?>        </tbody>        </table>    </div>     <?php if ($list_href || $is_checkbox || $write_href) { ?>    <div class="bo_fx">        <?php if ($is_checkbox) { ?>        <ul class="btn_bo_adm">            <li><input type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value"></li>            <li><input type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value"></li>            <li><input type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value"></li>        </ul>        <?php } ?>         <?php if ($list_href || $write_href) { ?>        <ul class="btn_bo_user">            <?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01">목록</a></li><?php } ?>            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>        </ul>        <?php } ?>    </div>    <?php } ?>    </form></div> <?php if($is_checkbox) { ?><noscript><p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p></noscript><?php } ?> <!-- 페이지 --><?php echo $write_pages;  ?> <!-- 게시판 검색 시작 { --><fieldset id="bo_sch">    <legend>게시물 검색</legend>     <form name="fsearch" method="get">    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">    <input type="hidden" name="sca" value="<?php echo $sca ?>">    <input type="hidden" name="sop" value="and">    <label for="sfl" class="sound_only">검색대상</label>    <select name="sfl" id="sfl">        <option value="wr_subject"<?php echo get_selected($sfl, 'wr_subject', true); ?>>제목</option>        <option value="wr_content"<?php echo get_selected($sfl, 'wr_content'); ?>>내용</option>        <option value="wr_subject||wr_content"<?php echo get_selected($sfl, 'wr_subject||wr_content'); ?>>제목+내용</option>        <option value="mb_id,1"<?php echo get_selected($sfl, 'mb_id,1'); ?>>회원아이디</option>        <option value="mb_id,0"<?php echo get_selected($sfl, 'mb_id,0'); ?>>회원아이디(코)</option>        <option value="wr_name,1"<?php echo get_selected($sfl, 'wr_name,1'); ?>>글쓴이</option>        <option value="wr_name,0"<?php echo get_selected($sfl, 'wr_name,0'); ?>>글쓴이(코)</option>    </select>    <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>    <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15">    <input type="submit" value="검색" class="btn_submit">    </form></fieldset><!-- } 게시판 검색 끝 --> <?php if ($is_checkbox) { ?><script>function all_checked(sw) {    var f = document.fboardlist;     for (var i=0; i<f.length; i++) {        if (f.elements[i].name == "chk_wr_id[]")            f.elements[i].checked = sw;    }} function fboardlist_submit(f) {    var chk_count = 0;     for (var i=0; i<f.length; i++) {        if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)            chk_count++;    }     if (!chk_count) {        alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");        return false;    }     if(document.pressed == "선택복사") {        select_copy("copy");        return;    }     if(document.pressed == "선택이동") {        select_copy("move");        return;    }     if(document.pressed == "선택삭제") {        if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))            return false;         f.removeAttribute("target");        f.action = "./board_list_update.php";    }     return true;} // 선택한 게시물 복사 및 이동function select_copy(sw) {    var f = document.fboardlist;     if (sw == "copy")        str = "복사";    else        str = "이동";     var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");     f.sw.value = sw;    f.target = "move";    f.action = "./move.php";    f.submit();}</script><?php } ?> <!-- } 게시판 목록 끝 -->

 

매번 도움만 받네요, 

부탁드리겠습니다. 

|

답변 1개

채택된 답변
+20 포인트

QnA보단 제작의뢰쪽으로 ㅜㅜ

http://sir.kr/main/request/ 

답변을 작성하려면 로그인이 필요합니다.