마크업:관리자>게시판그룹목록 작업 중 반복되는 부분 정리

This commit is contained in:
whitedot
2012-11-13 10:33:47 +09:00
parent 9dc3ee024e
commit a179310f90
27 changed files with 355 additions and 355 deletions

View File

@ -9,7 +9,7 @@ $token = get_token();
$sql_common = " from {$g4['group_table']} ";
$sql_search = " where (1) ";
if ($is_admin != "super")
if ($is_admin != 'super')
$sql_search .= " and (gr_admin = '{$member['mb_id']}') ";
if ($stx) {
@ -17,24 +17,24 @@ if ($stx) {
switch ($sfl) {
case "gr_id" :
case "gr_admin" :
$sql_search .= " ($sfl = '$stx') ";
$sql_search .= " ({$sfl} = '{$stx}') ";
break;
default :
$sql_search .= " ($sfl like '%$stx%') ";
$sql_search .= " ({$sfl} like '%{$stx}%') ";
break;
}
$sql_search .= " ) ";
}
if ($sst)
$sql_order = " order by $sst $sod ";
$sql_order = " order by {$sst} {$sod} ";
else
$sql_order = " order by gr_id asc ";
$sql = " select count(*) as cnt
$sql_common
$sql_search
$sql_order ";
{$sql_common}
{$sql_search}
{$sql_order} ";
$row = sql_fetch($sql);
$total_count = $row['cnt'];
@ -44,10 +44,10 @@ if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page - 1) * $rows; // 시작 열을 구함
$sql = " select *
$sql_common
$sql_search
$sql_order
limit $from_record, $rows ";
{$sql_common}
{$sql_search}
{$sql_order}
limit {$from_record}, {$rows} ";
$result = sql_query($sql);
$listall = '<a href="'.$_SERVER['PHP_SELF'].'">처음</a>';
@ -58,34 +58,34 @@ include_once('./admin.head.php');
$colspan = 8;
?>
<script type="text/javascript">
<script>
var list_update_php = "./boardgroup_list_update.php";
</script>
<table width=100% cellpadding=3 cellspacing=1>
<form name=fsearch method=get>
<table>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left><?=$listall?> (그룹수 : <?=number_format($total_count)?>개)</td>
<td width=50% align=right>
<select name=sfl>
<td><?=$listall?> (그룹수 : <?=number_format($total_count)?>개)</td>
<td>
<select id="sfl" name="sfl">
<option value="gr_subject">제목</option>
<option value="gr_id">ID</option>
<option value="gr_admin">그룹관리자</option>
</select>
<input type=text name=stx required itemname='검색어' value='<?=$stx?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<?=$stx?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
<form name=fboardgrouplist method=post>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<form id="fboardgrouplist" name="fboardgrouplist" method=post>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table>
<colgroup width=30>
<colgroup width=120>
<colgroup width=180>
@ -96,7 +96,7 @@ var list_update_php = "./boardgroup_list_update.php";
<colgroup width=60>
<tr><td colspan='<?=$colspan?>' class='line1'></td></tr>
<tr class='bgcol1 bold col1 ht center'>
<td><input type=checkbox name=chkall value="1" onclick="check_all(this.form)"></td>
<td><input type=checkbox id="chkall" name="chkall" value="1" onclick="check_all(this.form)"></td>
<td><?=subject_sort_link('gr_id')?>그룹아이디</a></td>
<td><?=subject_sort_link('gr_subject')?>제목</a></td>
<td><?=subject_sort_link('gr_admin')?>그룹관리자</a></td>
@ -125,20 +125,20 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
}
$list = $i%2;
echo "<input type=hidden name=gr_id[$i] value='{$row['gr_id']}'>";
echo "<tr class='list$list' onmouseover=\"this.className='mouseover';\" onmouseout=\"this.className='list$list';\" height=27 align=center>";
echo "<td><input type=checkbox name=chk[] value='$i'></td>";
echo "<input type="hidden" id="gr_id" name="gr_id"[$i] value='{$row['gr_id']}'>";
echo "<tr class='list$list' onmouseover=\"this.classid="mouseover" name="mouseover";\" onmouseout=\"this.className='list$list';\" height=27 align=center>";
echo "<td><input type=checkbox id="chk" name="chk"[] value='$i'></td>";
echo "<td><a href='{$g4['bbs_path']}/group.php?gr_id={$row['gr_id']}'><b>{$row['gr_id']}</b></a></td>";
echo "<td><input type=text name=gr_subject[$i] value='".get_text($row['gr_subject'])."' size=30></td>";
echo "<td><input type="text" id="gr_subject" name="gr_subject"[$i] value='".get_text($row['gr_subject'])."' size=30></td>";
if ($is_admin == "super")
//echo "<td>".get_member_id_select("gr_admin[$i]", 9, $row[gr_admin])."</td>";
echo "<td><input type=text name=gr_admin[$i] value='{$row['gr_admin']}' maxlength=20></td>";
echo "<td><input type="text" id="gr_admin" name="gr_admin"[$i] value='{$row['gr_admin']}' maxlength=20></td>";
else
echo "<input type=hidden name='gr_admin[$i]' value='{$row['gr_admin']}'><td>{$row['gr_admin']}</td>";
echo "<input type="hidden" name='gr_admin[$i]' value='{$row['gr_admin']}'><td>{$row['gr_admin']}</td>";
echo "<td><a href='./board_list.php?sfl=a.gr_id&amp;stx={$row['gr_id']}'>{$row2['cnt']}</a></td>";
echo "<td><input type=checkbox name=gr_use_access[$i] ".($row['gr_use_access']?'checked':'')." value='1'></td>";
echo "<td><input type=checkbox id="gr_use_access" name="gr_use_access"[$i] ".($row['gr_use_access']?'checked':'')." value='1'></td>";
echo "<td><a href='./boardgroupmember_list.php?gr_id={$row['gr_id']}'>{$row1['cnt']}</a></td>";
echo "<td>$s_upd $s_del</td>";
echo "</tr>\n";
@ -177,14 +177,14 @@ function post_delete(action_url, val)
}
</script>
<form name='fpost' method='post'>
<input type='hidden' name='sst' value='<?=$sst?>'>
<input type='hidden' name='sod' value='<?=$sod?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='token' value='<?=$token?>'>
<input type='hidden' name='gr_id'>
<form id="fpost" name="fpost" method='post'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<input type="hidden" id="gr_id" name="gr_id">
</form>
<?

View File

@ -67,16 +67,16 @@ if ($i == 0) {
</table>
<p>
<form name=fboardgroupmember_form method=post action='./boardgroupmember_update.php' onsubmit="return boardgroupmember_form_check(this)">
<input type=hidden name=mb_id value='<?=$mb['mb_id']?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fboardgroupmember_form" name="fboardgroupmember_form" method=post action='./boardgroupmember_update.php' onsubmit="return boardgroupmember_form_check(this)">
<input type="hidden" id="mb_id" name="mb_id" value='<?=$mb['mb_id']?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table width=100% align=center cellpadding=3 cellspacing=1 class=tablebg>
<colgroup width=20% class='col1 pad1 bold right'>
<colgroup width=80% class='col2 pad2'>
<tr>
<td>그룹</td>
<td>
<select name=gr_id>
<select id="gr_id" name="gr_id">
<option value=''>접근가능 그룹을 선택하세요.
<option value=''>--------------------------
<?
@ -126,15 +126,15 @@ function post_delete(action_url, val)
}
</script>
<form name='fpost' method='post'>
<input type='hidden' name='sst' value='<?=$sst?>'>
<input type='hidden' name='sod' value='<?=$sod?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='token' value='<?=$token?>'>
<input type='hidden' name='w' value='d'>
<input type='hidden' name='gm_id'>
<form id="fpost" name="fpost" method='post'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<input type="hidden" id="w" name="w" value='d'>
<input type="hidden" id="gm_id" name="gm_id">
</form>
<?

View File

@ -58,16 +58,16 @@ $colspan = 7;
<script type="text/javascript" src="<?=$g4['path']?>/js/sideview.js"></script>
<table width=100% cellpadding=3 cellspacing=1>
<form name=fsearch method=get>
<input type=hidden name=gr_id value='<?=$gr_id?>'>
<form id="fsearch" name="fsearch" method=get>
<input type="hidden" id="gr_id" name="gr_id" value='<?=$gr_id?>'>
<tr>
<td width=50% align=left>* <? echo "'<b>[{$gr['gr_id']}] {$gr['gr_subject']}</b>' 그룹의 접근가능한 회원 목록"; ?></td>
<td width=50% align=right>
<select name=sfl class=cssfl>
<td>* <? echo "'<b>[{$gr['gr_id']}] {$gr['gr_subject']}</b>' 그룹의 접근가능한 회원 목록"; ?></td>
<td>
<select id="sfl" name="sfl" class=cssfl>
<option value='a.mb_id'>회원아이디</option>
</select>
<input type=text name=stx required itemname='검색어' value='<? echo $stx ?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<? echo $stx ?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
@ -150,15 +150,15 @@ function post_delete(action_url, val)
}
</script>
<form name='fpost' method='post'>
<input type='hidden' name='sst' value='<?=$sst?>'>
<input type='hidden' name='sod' value='<?=$sod?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='token' value='<?=$token?>'>
<input type='hidden' name='w' value='listdelete'>
<input type='hidden' name='gm_id'>
<form id="fpost" name="fpost" method='post'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<input type="hidden" id="w" name="w" value='listdelete'>
<input type="hidden" id="gm_id" name="gm_id">
</form>
<?

View File

@ -23,8 +23,8 @@ $g4['title'] = '환경설정';
include_once ('./admin.head.php');
?>
<form id="fconfigform" name="fconfigform" method="post" onsubmit="return fconfigform_submit(this);">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<form id="fconfigform" id="fconfigform" name="fconfigform" method="post" onsubmit="return fconfigform_submit(this);">
<input type="hidden" id="token" id="token" name="token" value="<?=$token?>">
<section id="config_basic">
<h2><span></span>기본환경설정</h2>
@ -33,51 +33,51 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th101"><label for="cf_title">홈페이지 제목</label></th>
<td headers="th101"><input type="text" id="cf_title" name="cf_title" required value="<?=$config['cf_title']?>"></td>
<td headers="th101"><input type="text" id="cf_title" id="cf_title" name="cf_title" required value="<?=$config['cf_title']?>"></td>
<th scope="row" id="th102"><label for="cf_admin">최고관리자</label></th>
<td headers="th102"><?=get_member_id_select('cf_admin', 10, $config['cf_admin'], 'required')?></td>
</tr>
<tr>
<th scope="row" id="th103"><label for="cf_use_point">포인트 사용</label></th>
<td headers="th103" colspan="3"><input type="checkbox" id="cf_use_point" name="cf_use_point" value="1" <?=$config['cf_use_point']?'checked':'';?>> 사용</td>
<td headers="th103" colspan="3"><input type="checkbox" id="cf_use_point" id="cf_use_point" name="cf_use_point" value="1" <?=$config['cf_use_point']?'checked':'';?>> 사용</td>
</tr>
<tr>
<th scope="row" id="th104"><label for="cf_login_point">로그인시 포인트</label></th>
<td headers="th104"><input type="text" id="cf_login_point" name="cf_login_point" required value="<?=$config['cf_login_point']?>"> 점 <?=help("회원에게 하루에 한번만 부여")?></td>
<td headers="th104"><input type="text" id="cf_login_point" id="cf_login_point" name="cf_login_point" required value="<?=$config['cf_login_point']?>"> 점 <?=help("회원에게 하루에 한번만 부여")?></td>
<th scope="row" id="th105"><label for="cf_memo_send_point">쪽지보낼시 차감 포인트</label></th>
<td headers="th105"><input type="text" id="cf_memo_send_point" name="cf_memo_send_point" required value="<?=$config['cf_memo_send_point']?>"> 점 <?=help("양수로 입력하십시오.<br>0으로 입력하시면 쪽지보낼시 포인트를 차감하지 않습니다.")?></td>
<td headers="th105"><input type="text" id="cf_memo_send_point" id="cf_memo_send_point" name="cf_memo_send_point" required value="<?=$config['cf_memo_send_point']?>"> 점 <?=help("양수로 입력하십시오.<br>0으로 입력하시면 쪽지보낼시 포인트를 차감하지 않습니다.")?></td>
</tr>
<tr>
<th scope="row" id="th106"><label for="cf_cut_name">이름(별명) 표시</label></th>
<td headers="th106" colspan="3"><input type="text" id="cf_cut_name" name="cf_cut_name" value="<?=$config['cf_cut_name']?>"> 자리만 표시 <?=help("영숫자 2글자 = 한글 1글자")?></td>
<td headers="th106" colspan="3"><input type="text" id="cf_cut_name" id="cf_cut_name" name="cf_cut_name" value="<?=$config['cf_cut_name']?>"> 자리만 표시 <?=help("영숫자 2글자 = 한글 1글자")?></td>
</tr>
<tr>
<th scope="row" id="th107"><label for="cf_nick_modify">별명 수정</label></th>
<td headers="th107">수정한 후 <input type="text" id="cf_nick_modify" name="cf_nick_modify" value="<?=$config['cf_nick_modify']?>"> 일 동안 바꿀 수 없음</td>
<td headers="th107">수정한 후 <input type="text" id="cf_nick_modify" id="cf_nick_modify" name="cf_nick_modify" value="<?=$config['cf_nick_modify']?>"> 일 동안 바꿀 수 없음</td>
<th scope="row" id="th108"><label for="cf_open_modify">정보공개 수정</label></th>
<td headers="th108">수정한 후 <input type="text" id="cf_open_modify" name="cf_open_modify" value="<?=$config['cf_open_modify']?>"> 일 동안 바꿀 수 없음</td>
<td headers="th108">수정한 후 <input type="text" id="cf_open_modify" id="cf_open_modify" name="cf_open_modify" value="<?=$config['cf_open_modify']?>"> 일 동안 바꿀 수 없음</td>
</tr>
<tr>
<th scope="row" id="th109"><label for="cf_new_del">최근게시물 삭제</label></th>
<td headers="th109"><input type="text" id="cf_new_del" name="cf_new_del" value="<?=$config['cf_new_del']?>"> 일 <?=help("설정일이 지난 최근게시물 자동 삭제")?></td>
<td headers="th109"><input type="text" id="cf_new_del" id="cf_new_del" name="cf_new_del" value="<?=$config['cf_new_del']?>"> 일 <?=help("설정일이 지난 최근게시물 자동 삭제")?></td>
<th scope="row" id="th110"><label for="cf_memo_del">쪽지 삭제</label></th>
<td headers="th110"><input type="text" id="cf_memo_del" name="cf_memo_del" value="<?=$config['cf_memo_del']?>"> 일 <?=help("설정일이 지난 쪽지 자동 삭제")?></td>
<td headers="th110"><input type="text" id="cf_memo_del" id="cf_memo_del" name="cf_memo_del" value="<?=$config['cf_memo_del']?>"> 일 <?=help("설정일이 지난 쪽지 자동 삭제")?></td>
</tr>
<tr>
<th scope="row" id="th111"><label for="cf_visit_del">접속자로그 삭제</label></th>
<td headers="th111"><input type="text" id="cf_visit_del" name="cf_visit_del" value="<?=$config['cf_visit_del']?>"> 일 <?=help("설정일이 지난 접속자 로그 자동 삭제")?></td>
<td headers="th111"><input type="text" id="cf_visit_del" id="cf_visit_del" name="cf_visit_del" value="<?=$config['cf_visit_del']?>"> 일 <?=help("설정일이 지난 접속자 로그 자동 삭제")?></td>
<th scope="row" id="th112"><label for="cf_popular_del">인기검색어 삭제</label></th>
<td headers="th112"><input type="text" id="cf_popular_del" name="cf_popular_del" value="<?=$config['cf_popular_del']?>"> 일 <?=help("설정일이 지난 인기검색어 자동 삭제")?></td>
<td headers="th112"><input type="text" id="cf_popular_del" id="cf_popular_del" name="cf_popular_del" value="<?=$config['cf_popular_del']?>"> 일 <?=help("설정일이 지난 인기검색어 자동 삭제")?></td>
</tr>
<tr>
<th scope="row" id="th113"><label for="cf_login_minutes">현재 접속자</label></th>
<td headers="th113"><input type="text" id="cf_login_minutes" name="cf_login_minutes" value="<?=$config['cf_login_minutes']?>"> 분 <?=help("설정값 이내의 접속자를 현재 접속자로 인정")?></td>
<td headers="th113"><input type="text" id="cf_login_minutes" id="cf_login_minutes" name="cf_login_minutes" value="<?=$config['cf_login_minutes']?>"> 분 <?=help("설정값 이내의 접속자를 현재 접속자로 인정")?></td>
<th scope="row" id="th114"><label for="cf_page_rows">한페이지당 라인수</label></th>
<td headers="th114"><input type="text" id="cf_page_rows" name="cf_page_rows" value="<?=$config['cf_page_rows']?>"> 라인 <?=help("목록(리스트) 한페이지당 라인수")?></td>
<td headers="th114"><input type="text" id="cf_page_rows" id="cf_page_rows" name="cf_page_rows" value="<?=$config['cf_page_rows']?>"> 라인 <?=help("목록(리스트) 한페이지당 라인수")?></td>
</tr>
<tr>
<th scope="row" id="th115"><label for="cf_new_skin">최근게시물 스킨</label></th>
<td headers="th115"><select id="cf_new_skin" name="cf_new_skin" required >
<td headers="th115"><select id="cf_new_skin" id="cf_new_skin" name="cf_new_skin" required >
<?
$arr = get_skin_dir('new');
for ($i=0; $i<count($arr); $i++) {
@ -87,11 +87,11 @@ include_once ('./admin.head.php');
<script> document.getElementById('cf_new_skin').value="<?=$config['cf_new_skin']?>";</script>
</td>
<th scope="row" id="th116"><label for="cf_new_rows">최근게시물 라인수</label></th>
<td headers="th116"><input type="text" id="cf_new_rows" name="cf_new_rows" value="<?=$config['cf_new_rows']?>"> 라인 <?=help("목록 한페이지당 라인수")?></td>
<td headers="th116"><input type="text" id="cf_new_rows" id="cf_new_rows" name="cf_new_rows" value="<?=$config['cf_new_rows']?>"> 라인 <?=help("목록 한페이지당 라인수")?></td>
</tr>
<tr>
<th scope="row" id="th117"><label for="cf_search_skin">검색 스킨</label></th>
<td headers="th117" colspan="3"><select id="cf_search_skin" name="cf_search_skin" required>
<td headers="th117" colspan="3"><select id="cf_search_skin" id="cf_search_skin" name="cf_search_skin" required>
<?
$arr = get_skin_dir("search");
for ($i=0; $i<count($arr); $i++) {
@ -103,7 +103,7 @@ include_once ('./admin.head.php');
</tr>
<tr>
<th scope="row" id="th118"><label for="cf_connect_skin">접속자 스킨</label></th>
<td headers="th118" colspan="3"><select id="cf_connect_skin" name="cf_connect_skin" required >
<td headers="th118" colspan="3"><select id="cf_connect_skin" id="cf_connect_skin" name="cf_connect_skin" required >
<?
$arr = get_skin_dir('connect');
for ($i=0; $i<count($arr); $i++) {
@ -115,15 +115,15 @@ include_once ('./admin.head.php');
</tr>
<tr>
<th scope="row" id="th119"><label for="cf_use_copy_log">복사, 이동시 로그</label></th>
<td headers="th119" colspan="3"><input type="checkbox" id="cf_use_copy_log" name="cf_use_copy_log" value="1" <?=$config['cf_use_copy_log']?'checked':'';?>> 남김
<td headers="th119" colspan="3"><input type="checkbox" id="cf_use_copy_log" id="cf_use_copy_log" name="cf_use_copy_log" value="1" <?=$config['cf_use_copy_log']?'checked':'';?>> 남김
<?=help("게시물 아래에 누구로 부터 복사, 이동됨 표시")?>
</td>
</tr>
<tr>
<th scope="row" id="th120"><label for="cf_possible_ip">접근가능 IP</label></th>
<td headers="th120"><textarea id="cf_possible_ip" name="cf_possible_ip" rows="5"><?=$config['cf_possible_ip']?> </textarea><br>입력된 IP의 컴퓨터만 접근할 수 있음.<br>123.123.+ 도 입력 가능. (엔터로 구분)</td>
<td headers="th120"><textarea id="cf_possible_ip" id="cf_possible_ip" name="cf_possible_ip" rows="5"><?=$config['cf_possible_ip']?> </textarea><br>입력된 IP의 컴퓨터만 접근할 수 있음.<br>123.123.+ 도 입력 가능. (엔터로 구분)</td>
<th scope="row" id="th121"><label for="cf_intercept_ip">접근차단 IP</label></th>
<td headers="th121"><textarea id="cf_intercept_ip" name="cf_intercept_ip" rows="5"><?=$config['cf_intercept_ip']?> </textarea><br>입력된 IP의 컴퓨터는 접근할 수 없음.<br>123.123.+ 도 입력 가능. (엔터로 구분)</td>
<td headers="th121"><textarea id="cf_intercept_ip" id="cf_intercept_ip" name="cf_intercept_ip" rows="5"><?=$config['cf_intercept_ip']?> </textarea><br>입력된 IP의 컴퓨터는 접근할 수 없음.<br>123.123.+ 도 입력 가능. (엔터로 구분)</td>
</tr>
</tbody>
</table>
@ -136,54 +136,54 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th201"><label for="cf_read_point">글읽기 포인트</label></th>
<td headers="th201"><input type="text" id="cf_read_point" name="cf_read_point" required value="<?=$config['cf_read_point']?>"> 점</td>
<td headers="th201"><input type="text" id="cf_read_point" id="cf_read_point" name="cf_read_point" required value="<?=$config['cf_read_point']?>"> 점</td>
<th scope="row" id="th202"><label for="cf_write_point">글쓰기 포인트</label></th>
<td headers="th202"><input type="text" id="cf_write_point" name="cf_write_point" required value="<?=$config['cf_write_point']?>"> 점</td>
<td headers="th202"><input type="text" id="cf_write_point" id="cf_write_point" name="cf_write_point" required value="<?=$config['cf_write_point']?>"> 점</td>
</tr>
<tr>
<th scope="row" id="th203"><label for="cf_comment_point">코멘트쓰기 포인트</label></th>
<td headers="th203"><input type="text" id="cf_comment_point" name="cf_comment_point" required value="<?=$config['cf_comment_point']?>"> 점</td>
<td headers="th203"><input type="text" id="cf_comment_point" id="cf_comment_point" name="cf_comment_point" required value="<?=$config['cf_comment_point']?>"> 점</td>
<th scope="row" id="th204"><label for="cf_download_point">다운로드 포인트</label></th>
<td headers="th204"><input type="text" id="cf_download_point" name="cf_download_point" required value="<?=$config['cf_download_point']?>"> 점</td>
<td headers="th204"><input type="text" id="cf_download_point" id="cf_download_point" name="cf_download_point" required value="<?=$config['cf_download_point']?>"> 점</td>
</tr>
<tr>
<th scope="row" id="th205"><label for="cf_link_target">LINK TARGET</label></th>
<td headers="th205"><input type="text" id="cf_link_target" name="cf_link_target" value="<?=$config['cf_link_target']?>">
<td headers="th205"><input type="text" id="cf_link_target" id="cf_link_target" name="cf_link_target" value="<?=$config['cf_link_target']?>">
<?=help("게시판 내용중 자동으로 링크되는 창의 타켓을 지정합니다.\n\n_self, _top, _blank, _new 를 주로 지정합니다.")?></td>
<th scope="row" id="th206"><label for="cf_search_part">검색 단위</label></th>
<td headers="th206"><input type="text" id="cf_search_part" name="cf_search_part" value="<?=$config['cf_search_part']?>"> 건 단위로 검색</td>
<td headers="th206"><input type="text" id="cf_search_part" id="cf_search_part" name="cf_search_part" value="<?=$config['cf_search_part']?>"> 건 단위로 검색</td>
</tr>
<tr>
<th scope="row" id="th207"><label for="cf_search_bgcolor">검색 배경 색상</label></th>
<td headers="th207"><input type="text" id="cf_search_bgcolor" name="cf_search_bgcolor" required value="<?=$config['cf_search_bgcolor']?>"></td>
<td headers="th207"><input type="text" id="cf_search_bgcolor" id="cf_search_bgcolor" name="cf_search_bgcolor" required value="<?=$config['cf_search_bgcolor']?>"></td>
<th scope="row" id="th208"><label for="cf_search_color">검색 글자 색상</label></th>
<td headers="th208"><input type="text" id="cf_search_color" name="cf_search_color" required value="<?=$config['cf_search_color']?>"></td>
<td headers="th208"><input type="text" id="cf_search_color" id="cf_search_color" name="cf_search_color" required value="<?=$config['cf_search_color']?>"></td>
</tr>
<tr>
<th scope="row" id="th209"><label for="cf_delay_sec">글쓰기 간격</label></th>
<td headers="th209"><input type="text" id="cf_delay_sec" name="cf_delay_sec" required value="<?=$config['cf_delay_sec']?>"> 초 지난후 가능</td>
<td headers="th209"><input type="text" id="cf_delay_sec" id="cf_delay_sec" name="cf_delay_sec" required value="<?=$config['cf_delay_sec']?>"> 초 지난후 가능</td>
<th scope="row" id="th210"><label for="cf_write_pages">페이지 표시 수</label></th>
<td headers="th210"><input type="text" id="cf_write_pages" name="cf_write_pages" required value="<?=$config['cf_write_pages']?>"> 페이지씩 표시</td>
<td headers="th210"><input type="text" id="cf_write_pages" id="cf_write_pages" name="cf_write_pages" required value="<?=$config['cf_write_pages']?>"> 페이지씩 표시</td>
</tr>
<tr>
<th scope="row" id="th211"><label for="cf_image_extension">이미지 업로드 확장자</label></th>
<td headers="th211" colspan="3"><input type="text" id="cf_image_extension" name="cf_image_extension" value="<?=$config['cf_image_extension']?>">
<td headers="th211" colspan="3"><input type="text" id="cf_image_extension" id="cf_image_extension" name="cf_image_extension" value="<?=$config['cf_image_extension']?>">
<?=help("게시판 글작성시 이미지 파일 업로드 가능 확장자. | 로 구분")?></td>
</tr>
<tr>
<th scope="row" id="th212"><label for="cf_flash_extension">플래쉬 업로드 확장자</label></th>
<td headers="th212" colspan="3"><input type="text" id="cf_flash_extension" name="cf_flash_extension" value="<?=$config['cf_flash_extension']?>">
<td headers="th212" colspan="3"><input type="text" id="cf_flash_extension" id="cf_flash_extension" name="cf_flash_extension" value="<?=$config['cf_flash_extension']?>">
<?=help("게시판 글작성시 플래쉬 파일 업로드 가능 확장자. | 로 구분")?></td>
</tr>
<tr>
<th scope="row" id="th213"><label for="cf_movie_extension">동영상 업로드 확장자</label></th>
<td headers="th213" colspan="3"><input type="text" id="cf_movie_extension" name="cf_movie_extension" value="<?=$config['cf_movie_extension']?>">
<td headers="th213" colspan="3"><input type="text" id="cf_movie_extension" id="cf_movie_extension" name="cf_movie_extension" value="<?=$config['cf_movie_extension']?>">
<?=help("게시판 글작성시 동영상 파일 업로드 가능 확장자. | 로 구분")?></td>
</tr>
<tr>
<th scope="row" id="th214"><label for="cf_filter">단어 필터링
<?=help("입력된 단어가 포함된 내용은 게시할 수 없습니다.\n\n단어와 단어 사이는 ,로 구분합니다.")?></label></th>
<td headers="th214" colspan="3"><textarea id="cf_filter" name="cf_filter" rows="7"><?=$config['cf_filter']?> </textarea></td>
<td headers="th214" colspan="3"><textarea id="cf_filter" id="cf_filter" name="cf_filter" rows="7"><?=$config['cf_filter']?> </textarea></td>
</tr>
</tbody>
</table>
@ -197,7 +197,7 @@ include_once ('./admin.head.php');
<tr>
<th scope="row" id="th301"><label for="cf_member_skin">회원 스킨</label></th>
<td headers="th301" colspan="3">
<select id="cf_member_skin" name="cf_member_skin" required>
<select id="cf_member_skin" id="cf_member_skin" name="cf_member_skin" required>
<?
$arr = get_skin_dir('member');
for ($i=0; $i<count($arr); $i++) {
@ -211,53 +211,53 @@ include_once ('./admin.head.php');
<tr>
<th scope="row" id="th302">홈페이지 입력</th>
<td headers="th302">
<input type="checkbox" id="cf_use_homepage" name="cf_use_homepage" value="1" <?=$config['cf_use_homepage']?'checked':'';?>> <label for="cf_use_homepage">보이기</label>
<input type="checkbox" id="cf_req_homepage" name="cf_req_homepage" value="1" <?=$config['cf_req_homepage']?'checked':'';?>> <label for="cf_req_homepage">필수입력</label>
<input type="checkbox" id="cf_use_homepage" id="cf_use_homepage" name="cf_use_homepage" value="1" <?=$config['cf_use_homepage']?'checked':'';?>> <label for="cf_use_homepage">보이기</label>
<input type="checkbox" id="cf_req_homepage" id="cf_req_homepage" name="cf_req_homepage" value="1" <?=$config['cf_req_homepage']?'checked':'';?>> <label for="cf_req_homepage">필수입력</label>
</td>
<th scope="row" id="th303">주소 입력</th>
<td headers="th303">
<input type="checkbox" id="cf_use_addr" name="cf_use_addr" value="1" <?=$config['cf_use_addr']?'checked':'';?>> <label for="cf_use_addr">보이기</label>
<input type="checkbox" id="cf_req_addr" name="cf_req_addr" value="1" <?=$config['cf_req_addr']?'checked':'';?>> <label for="cf_req_addr">필수입력</label>
<input type="checkbox" id="cf_use_addr" id="cf_use_addr" name="cf_use_addr" value="1" <?=$config['cf_use_addr']?'checked':'';?>> <label for="cf_use_addr">보이기</label>
<input type="checkbox" id="cf_req_addr" id="cf_req_addr" name="cf_req_addr" value="1" <?=$config['cf_req_addr']?'checked':'';?>> <label for="cf_req_addr">필수입력</label>
</td>
</tr>
<tr>
<th scope="row" id="th304">전화번호 입력</th>
<td headers="th304">
<input type="checkbox" id="cf_use_tel" name="cf_use_tel" value="1" <?=$config['cf_use_tel']?'checked':'';?>> <label for="cf_use_tel">보이기</label>
<input type="checkbox" id="cf_req_tel" name="cf_req_tel" value="1" <?=$config['cf_req_tel']?'checked':'';?>> <label for="cf_req_tel">필수입력</label>
<input type="checkbox" id="cf_use_tel" id="cf_use_tel" name="cf_use_tel" value="1" <?=$config['cf_use_tel']?'checked':'';?>> <label for="cf_use_tel">보이기</label>
<input type="checkbox" id="cf_req_tel" id="cf_req_tel" name="cf_req_tel" value="1" <?=$config['cf_req_tel']?'checked':'';?>> <label for="cf_req_tel">필수입력</label>
</td>
<th scope="row" id="th305">핸드폰 입력</th>
<td headers="th305">
<input type="checkbox" id="cf_use_hp" name="cf_use_hp" value="1" <?=$config['cf_use_hp']?'checked':'';?>> <label for="cf_use_hp">보이기</label>
<input type="checkbox" id="cf_req_hp" name="cf_req_hp" value="1" <?=$config['cf_req_hp']?'checked':'';?>> <label for="cf_req_hp">필수입력</label>
<input type="checkbox" id="cf_use_hp" id="cf_use_hp" name="cf_use_hp" value="1" <?=$config['cf_use_hp']?'checked':'';?>> <label for="cf_use_hp">보이기</label>
<input type="checkbox" id="cf_req_hp" id="cf_req_hp" name="cf_req_hp" value="1" <?=$config['cf_req_hp']?'checked':'';?>> <label for="cf_req_hp">필수입력</label>
</td>
</tr>
<tr>
<th scope="row" id="th306">서명 입력</th>
<td headers="th306">
<input type="checkbox" id="cf_use_signature" name="cf_use_signature" value="1" <?=$config['cf_use_signature']?'checked':'';?>> <label for="cf_use_signature">보이기</label>
<input type="checkbox" id="cf_req_signature" name="cf_req_signature" value="1" <?=$config['cf_req_signature']?'checked':'';?>> <label for="cf_req_signature">필수입력</label>
<input type="checkbox" id="cf_use_signature" id="cf_use_signature" name="cf_use_signature" value="1" <?=$config['cf_use_signature']?'checked':'';?>> <label for="cf_use_signature">보이기</label>
<input type="checkbox" id="cf_req_signature" id="cf_req_signature" name="cf_req_signature" value="1" <?=$config['cf_req_signature']?'checked':'';?>> <label for="cf_req_signature">필수입력</label>
</td>
<th scope="row" id="th307">자기소개 입력</th>
<td headers="th307">
<input type="checkbox" id="cf_use_profile" name="cf_use_profile" value="1" <?=$config['cf_use_profile']?'checked':'';?>> <label for="cf_use_profile">보이기</label>
<input type="checkbox" id="cf_req_profile" name="cf_req_profile" value="1" <?=$config['cf_req_profile']?'checked':'';?>> <label for="cf_req_profile">필수입력</label>
<input type="checkbox" id="cf_use_profile" id="cf_use_profile" name="cf_use_profile" value="1" <?=$config['cf_use_profile']?'checked':'';?>> <label for="cf_use_profile">보이기</label>
<input type="checkbox" id="cf_req_profile" id="cf_req_profile" name="cf_req_profile" value="1" <?=$config['cf_req_profile']?'checked':'';?>> <label for="cf_req_profile">필수입력</label>
</td>
</tr>
<tr>
<th scope="row" id="th308"><label for="cf_register_level">회원가입시 권한</label></th>
<td headers="th308"><?=get_member_level_select('cf_register_level', 1, 9, $config['cf_register_level']) ?></td>
<th scope="row" id="th309"><label for="cf_register_point">회원가입시 포인트</label></th>
<td headers="th309"><input type="text" id="cf_register_point" name="cf_register_point" value="<?=$config['cf_register_point']?>"> 점</td>
<td headers="th309"><input type="text" id="cf_register_point" id="cf_register_point" name="cf_register_point" value="<?=$config['cf_register_point']?>"> 점</td>
</tr>
<tr>
<th scope='row' id="th310"><label for='cf_leave_day'>회원탈퇴후 삭제일</label></th>
<td headers="th310" colspan="3"><input type="text" id="cf_leave_day" name="cf_leave_day" value="<?=$config['cf_leave_day']?>"> 일 후 자동 삭제</td>
<td headers="th310" colspan="3"><input type="text" id="cf_leave_day" id="cf_leave_day" name="cf_leave_day" value="<?=$config['cf_leave_day']?>"> 일 후 자동 삭제</td>
</tr>
<tr>
<th scope="row" id="th311"><label for="cf_use_member_icon">회원아이콘 사용</label></th>
<td headers="th311">
<select id="cf_use_member_icon" name="cf_use_member_icon">
<select id="cf_use_member_icon" id="cf_use_member_icon" name="cf_use_member_icon">
<option value="0">미사용
<option value="1">아이콘만 표시
<option value="2">아이콘+이름 표시
@ -270,31 +270,31 @@ include_once ('./admin.head.php');
</tr>
<tr>
<th scope="row" id="th313"><label for="cf_member_icon_size">회원아이콘 용량</label></th>
<td headers="th313"><input type="text" id="cf_member_icon_size" name="cf_member_icon_size" value="<?=$config['cf_member_icon_size']?>"> 바이트 이하</td>
<td headers="th313"><input type="text" id="cf_member_icon_size" id="cf_member_icon_size" name="cf_member_icon_size" value="<?=$config['cf_member_icon_size']?>"> 바이트 이하</td>
<th scope="row" id="th314">회원아이콘 사이즈</th>
<td headers="th314"><label for="cf_member_icon_width">폭</label> <input type="text" id="cf_member_icon_width" name="cf_member_icon_width" value="<?=$config['cf_member_icon_width']?>"> 픽셀 , <label for="cf_member_icon_height">높이 <input type="text" id="cf_member_icon_height" name="cf_member_icon_height" value="<?=$config['cf_member_icon_height']?>"> 픽셀 이하</td>
<td headers="th314"><label for="cf_member_icon_width">폭</label> <input type="text" id="cf_member_icon_width" id="cf_member_icon_width" name="cf_member_icon_width" value="<?=$config['cf_member_icon_width']?>"> 픽셀 , <label for="cf_member_icon_height">높이 <input type="text" id="cf_member_icon_height" id="cf_member_icon_height" name="cf_member_icon_height" value="<?=$config['cf_member_icon_height']?>"> 픽셀 이하</td>
</tr>
<tr>
<th scope="row" id="th315"><label for="cf_use_recommend">추천인제도 사용</label></th>
<td headers="th315"><input type="checkbox" id="cf_use_recommend" name="cf_use_recommend" value="1" <?=$config['cf_use_recommend']?'checked':'';?>> 사용</td>
<td headers="th315"><input type="checkbox" id="cf_use_recommend" id="cf_use_recommend" name="cf_use_recommend" value="1" <?=$config['cf_use_recommend']?'checked':'';?>> 사용</td>
<th scope="row" id="th316"><label for="cf_recommend_point">추천인 포인트</label></th>
<td headers="th316"><input type="text" id="cf_recommend_point" name="cf_recommend_point" value="<?=$config['cf_recommend_point']?>"> 점</td>
<td headers="th316"><input type="text" id="cf_recommend_point" id="cf_recommend_point" name="cf_recommend_point" value="<?=$config['cf_recommend_point']?>"> 점</td>
</tr>
<tr>
<th scope="row" id="th317"><label for="cf_prohibit_id">아이디,별명 금지단어
<?=help("입력된 단어가 포함된 내용은 회원아이디, 별명으로 사용할 수 없습니다.\n\n단어와 단어 사이는 , 로 구분합니다.")?></label></th>
<td headers="th317"><textarea id="cf_prohibit_id" name="cf_prohibit_id" rows="5"><?=$config['cf_prohibit_id']?> </textarea></td>
<td headers="th317"><textarea id="cf_prohibit_id" id="cf_prohibit_id" name="cf_prohibit_id" rows="5"><?=$config['cf_prohibit_id']?> </textarea></td>
<th scope="row" id="th318"><label for="cf_prohibit_email">입력 금지 메일
<?=help("hanmail.net과 같은 메일 주소는 입력을 못합니다.\n\n엔터로 구분합니다.")?></label></th>
<td headers="th318"><textarea id="cf_prohibit_email" name="cf_prohibit_email" rows="5"><?=$config['cf_prohibit_email']?> </textarea><br></td>
<td headers="th318"><textarea id="cf_prohibit_email" id="cf_prohibit_email" name="cf_prohibit_email" rows="5"><?=$config['cf_prohibit_email']?> </textarea><br></td>
</tr>
<tr>
<th scope="row" id="th319"><label for="cf_stipulation">회원가입약관</label></th>
<td headers="th319" colspan="3"><textarea id="cf_stipulation" name="cf_stipulation" rows="10"><?=$config['cf_stipulation']?> </textarea></td>
<td headers="th319" colspan="3"><textarea id="cf_stipulation" id="cf_stipulation" name="cf_stipulation" rows="10"><?=$config['cf_stipulation']?> </textarea></td>
</tr>
<tr>
<th scope="row" id="th320"><label for="cf_privacy">개인정보취급방침</label></th>
<td headers="th320" colspan="3"><textarea id="cf_privacy" name="cf_privacy" rows="10"><?=$config['cf_privacy']?> </textarea></td>
<td headers="th320" colspan="3"><textarea id="cf_privacy" id="cf_privacy" name="cf_privacy" rows="10"><?=$config['cf_privacy']?> </textarea></td>
</tr>
</tbody>
</table>
@ -307,15 +307,15 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th401"><label for="cf_email_use">메일발송 사용</label></th>
<td headers="th401"><input type="checkbox" id="cf_email_use" name="cf_email_use" value="1" <?=$config['cf_email_use']?'checked':'';?>> 사용 (체크하지 않으면 메일발송을 아예 사용하지 않습니다. 메일 테스트도 불가합니다.)</td>
<td headers="th401"><input type="checkbox" id="cf_email_use" id="cf_email_use" name="cf_email_use" value="1" <?=$config['cf_email_use']?'checked':'';?>> 사용 (체크하지 않으면 메일발송을 아예 사용하지 않습니다. 메일 테스트도 불가합니다.)</td>
</tr>
<tr>
<th scope="row" id="th402"><label for="cf_use_email_certify">메일인증 사용</label></th>
<td headers="th402"><input type="checkbox" id="cf_use_email_certify" name="cf_use_email_certify" value="1" <?=$config['cf_use_email_certify']?'checked':'';?>> 사용 <?=help("메일에 배달된 인증 주소를 클릭하여야 회원으로 인정합니다.");?></td>
<td headers="th402"><input type="checkbox" id="cf_use_email_certify" id="cf_use_email_certify" name="cf_use_email_certify" value="1" <?=$config['cf_use_email_certify']?'checked':'';?>> 사용 <?=help("메일에 배달된 인증 주소를 클릭하여야 회원으로 인정합니다.");?></td>
</tr>
<tr>
<th scope="row" id="th403"><label for="cf_formmail_is_member">폼메일 사용 여부</label></th>
<td headers="th403"><input type="checkbox" id="cf_formmail_is_member" name="cf_formmail_is_member" value="1" <?=$config['cf_formmail_is_member']?'checked':'';?>> 회원만 사용 <?=help("체크하지 않으면 비회원도 사용 할 수 있습니다.")?></td>
<td headers="th403"><input type="checkbox" id="cf_formmail_is_member" id="cf_formmail_is_member" name="cf_formmail_is_member" value="1" <?=$config['cf_formmail_is_member']?'checked':'';?>> 회원만 사용 <?=help("체크하지 않으면 비회원도 사용 할 수 있습니다.")?></td>
</tr>
</table>
<table>
@ -323,23 +323,23 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th404"><label for="cf_email_wr_super_admin">최고관리자 메일발송</label></th>
<td headers="th404"><input type="checkbox" id="cf_email_wr_super_admin" name="cf_email_wr_super_admin" value="1" <?=$config['cf_email_wr_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
<td headers="th404"><input type="checkbox" id="cf_email_wr_super_admin" id="cf_email_wr_super_admin" name="cf_email_wr_super_admin" value="1" <?=$config['cf_email_wr_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
</tr>
<tr>
<th scope="row" id="th405"><label for="cf_email_wr_group_admin">그룹관리자 메일발송</label></th>
<td headers="th405"><input type="checkbox" id="cf_email_wr_group_admin" name="cf_email_wr_group_admin" value="1" <?=$config['cf_email_wr_group_admin']?'checked':'';?>> 사용 (그룹관리자에게 메일을 발송합니다.)</td>
<td headers="th405"><input type="checkbox" id="cf_email_wr_group_admin" id="cf_email_wr_group_admin" name="cf_email_wr_group_admin" value="1" <?=$config['cf_email_wr_group_admin']?'checked':'';?>> 사용 (그룹관리자에게 메일을 발송합니다.)</td>
</tr>
<tr>
<th scope="row" id="th406"><label for="cf_email_wr_board_admin">게시판관리자 메일발송</label></th>
<td headers="th406"><input type="checkbox" id="cf_email_wr_board_admin" name="cf_email_wr_board_admin" value="1" <?=$config['cf_email_wr_board_admin']?'checked':'';?>> 사용 (게시판관리자에게 메일을 발송합니다.)</td>
<td headers="th406"><input type="checkbox" id="cf_email_wr_board_admin" id="cf_email_wr_board_admin" name="cf_email_wr_board_admin" value="1" <?=$config['cf_email_wr_board_admin']?'checked':'';?>> 사용 (게시판관리자에게 메일을 발송합니다.)</td>
</tr>
<tr>
<th scope="row" id="th407"><label for="cf_email_wr_write">원글 메일발송</label></th>
<td headers="th407"><input type="checkbox" id="cf_email_wr_write" name="cf_email_wr_write" value="1" <?=$config['cf_email_wr_write']?'checked':'';?>> 사용 (게시자님께 메일을 발송합니다.)</td>
<td headers="th407"><input type="checkbox" id="cf_email_wr_write" id="cf_email_wr_write" name="cf_email_wr_write" value="1" <?=$config['cf_email_wr_write']?'checked':'';?>> 사용 (게시자님께 메일을 발송합니다.)</td>
</tr>
<tr>
<th scope="row" id="th408"><label for="cf_email_wr_comment_all">코멘트 메일발송</label></th>
<td headers="th408"><input type="checkbox" id="cf_email_wr_comment_all" name="cf_email_wr_comment_all" value="1" <?=$config['cf_email_wr_comment_all']?'checked':'';?>> 사용 (원글에 코멘트가 올라오는 경우 코멘트 쓴 모든 분들께 메일을 발송합니다.)</td>
<td headers="th408"><input type="checkbox" id="cf_email_wr_comment_all" id="cf_email_wr_comment_all" name="cf_email_wr_comment_all" value="1" <?=$config['cf_email_wr_comment_all']?'checked':'';?>> 사용 (원글에 코멘트가 올라오는 경우 코멘트 쓴 모든 분들께 메일을 발송합니다.)</td>
</tr>
</tbody>
</table>
@ -349,11 +349,11 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th409"><label for="cf_email_mb_super_admin">최고관리자 메일발송</label></th>
<td headers="th409"><input type="checkbox" id="cf_email_mb_super_admin" name="cf_email_mb_super_admin" value="1" <?=$config['cf_email_mb_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
<td headers="th409"><input type="checkbox" id="cf_email_mb_super_admin" id="cf_email_mb_super_admin" name="cf_email_mb_super_admin" value="1" <?=$config['cf_email_mb_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
</tr>
<tr>
<th scope="row" id="th410"><label for="cf_email_mb_member">회원님께 메일발송</label></th>
<td headers="th410"><input type="checkbox" id="cf_email_mb_member" name="cf_email_mb_member" value="1" <?=$config['cf_email_mb_member']?'checked':'';?>> 사용 (회원가입한 회원님께 메일을 발송합니다.)</td>
<td headers="th410"><input type="checkbox" id="cf_email_mb_member" id="cf_email_mb_member" name="cf_email_mb_member" value="1" <?=$config['cf_email_mb_member']?'checked':'';?>> 사용 (회원가입한 회원님께 메일을 발송합니다.)</td>
</tr>
</tbody>
</table>
@ -362,7 +362,7 @@ include_once ('./admin.head.php');
<tbody>
<tr>
<th scope="row" id="th411"><label for="cf_email_po_super_admin">최고관리자 메일발송</label></th>
<td headers="th411"><input type="checkbox" id="cf_email_po_super_admin" name="cf_email_po_super_admin" value="1" <?=$config['cf_email_po_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
<td headers="th411"><input type="checkbox" id="cf_email_po_super_admin" id="cf_email_po_super_admin" name="cf_email_po_super_admin" value="1" <?=$config['cf_email_po_super_admin']?'checked':'';?>> 사용 (최고관리자에게 메일을 발송합니다.)</td>
</tr>
</tbody>
</table>
@ -376,13 +376,13 @@ include_once ('./admin.head.php');
<? for ($i=1; $i<=10; $i=$i+2) { $k=$i+1; ?>
<tr>
<th scope="row" id="th5a<?=$i?>"><label for="cf_<?=$i?>_subj">여분필드<?=$i?>제목</label></th>
<td headers="th5a<?=$i?>"><input type="text" id="cf_<?=$i?>_subj" name="cf_<?=$i?>_subj" value="<?=get_text($config['cf_'.$i.'_subj'])?>"></td>
<td headers="th5a<?=$i?>"><input type="text" id="cf_<?=$i?>_subj" id="cf_<?=$i?>_subj" name="cf_<?=$i?>_subj" value="<?=get_text($config['cf_'.$i.'_subj'])?>"></td>
<th scope="row" id="th5b<?=$i?>"><label for="cf_<?=$i?>">여분필드<?=$i?>설명</label></th>
<td headers="th5b<?=$i?>"><input type="text" id="cf_<?=$i?>" name="cf_<?=$i?>" value="<?=$config['cf_'.$i]?>"></td>
<td headers="th5b<?=$i?>"><input type="text" id="cf_<?=$i?>" id="cf_<?=$i?>" name="cf_<?=$i?>" value="<?=$config['cf_'.$i]?>"></td>
<th scope="row" id="th5a<?=$k?>"><label for="cf_<?=$k?>_subj">여분필드<?=$k?>제목</label></th>
<td headers="th5a<?=$k?>"><input type="text" id="cf_<?=$k?>_subj" name="cf_<?=$k?>_subj" value="<?=get_text($config['cf_'.$k.'_subj'])?>"></td>
<td headers="th5a<?=$k?>"><input type="text" id="cf_<?=$k?>_subj" id="cf_<?=$k?>_subj" name="cf_<?=$k?>_subj" value="<?=get_text($config['cf_'.$k.'_subj'])?>"></td>
<th scope="row" id="th5b<?=$k?>"><label for="cf_<?=$k?>">여분필드<?=$k?>설명</label></th>
<td headers="th5b<?=$k?>"><input type="text" id="cf_<?=$k?>" name="cf_<?=$k?>" value="<?=$config['cf_'.$k]?>"></td>
<td headers="th5b<?=$k?>"><input type="text" id="cf_<?=$k?>" id="cf_<?=$k?>" name="cf_<?=$k?>" value="<?=$config['cf_'.$k]?>"></td>
</tr>
<? } ?>
</tbody>
@ -393,7 +393,7 @@ include_once ('./admin.head.php');
<legend><span></span>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드</label>
<input type="password" id="admin_password" name="admin_password" required title="관리자 패스워드">
<input type="password" id="admin_password" id="admin_password" name="admin_password" required title="관리자 패스워드">
</fieldset>
<div class="btn_confirm">

View File

@ -24,10 +24,10 @@ $g4['title'] = $html_title;
include_once('./admin.head.php');
?>
<form name=fmailform method=post action="./mail_update.php" onsubmit="return fmailform_check(this);">
<input type=hidden name=w value='<?=$w?>'>
<input type=hidden name=ma_id value='<?=$ma['ma_id']?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fmailform" name="fmailform" method=post action="./mail_update.php" onsubmit="return fmailform_check(this);">
<input type="hidden" id="w" name="w" value='<?=$w?>'>
<input type="hidden" id="ma_id" name="ma_id" value='<?=$ma['ma_id']?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table cellpadding=0 cellspacing=0 width=100%>
<colgroup width=20% class='col1 pad1 bold right'>
<colgroup width=80% class='col2 pad2'>
@ -37,13 +37,13 @@ include_once('./admin.head.php');
<tr><td colspan=2 class='line1'></td></tr>
<tr class='ht'>
<td>메일 제목</td>
<td><input type=text class='ed w99' name=ma_subject value='<?=$ma['ma_subject']?>' required itemname='메일 제목'></td>
<td><input type="text" class='ed w99' id="ma_subject" name="ma_subject" value='<?=$ma['ma_subject']?>' required itemname='메일 제목'></td>
</tr>
<tr>
<td>메일 내용</td>
<td class=lh>
<?=textarea_size('ma_content')?>
<textarea id=ma_content name=ma_content rows=20 class='ed w99' required itemname='메일 내용'><?=$ma['ma_content']?></textarea>
<textarea id=ma_content id="ma_content" name="ma_content" rows=20 class='ed w99' required itemname='메일 내용'><?=$ma['ma_content']?></textarea>
<br>{이름} , {별명} , {회원아이디} , {이메일} , {생일}
<br>위와 같이 HTML 코드에 삽입하면 해당 내용에 맞게 변환하여 메일 발송합니다.
</td>

View File

@ -84,14 +84,14 @@ function post_delete(action_url, val)
}
</script>
<form id='fpost' name='fpost' method="post">
<input type='hidden' id='sst' name='sst' value="<?=$sst?>">
<input type='hidden' id='sod' name='sod' value="<?=$sod?>">
<input type='hidden' id='sfl' name='sfl' value="<?=$sfl?>">
<input type='hidden' id='stx' name='stx' value="<?=$stx?>">
<input type='hidden' id='page' name='page' value="<?=$page?>">
<input type='hidden' id='w' name='w' value='d'>
<input type='hidden' id='ma_id' name='ma_id'>
<form id='fpost' id="fpost" name="fpost" method="post">
<input type="hidden" id='sst' id="sst" name="sst" value="<?=$sst?>">
<input type="hidden" id='sod' id="sod" name="sod" value="<?=$sod?>">
<input type="hidden" id='sfl' id="sfl" name="sfl" value="<?=$sfl?>">
<input type="hidden" id='stx' id="stx" name="stx" value="<?=$stx?>">
<input type="hidden" id='page' id="page" name="page" value="<?=$page?>">
<input type="hidden" id='w' id="w" name="w" value='d'>
<input type="hidden" id='ma_id' id="ma_id" name="ma_id">
</form>
<?

View File

@ -49,8 +49,8 @@ include_once('./admin.head.php');
<tr>
<td>
<table cellpadding=0 cellspacing=0 width=100%>
<form name=frmsendmailselectform method=post action="./mail_select_list.php" autocomplete="off">
<input type=hidden name=ma_id value='<? echo $ma_id ?>'>
<form id="frmsendmailselectform" name="frmsendmailselectform" method=post action="./mail_select_list.php" autocomplete="off">
<input type="hidden" id="ma_id" name="ma_id" value='<? echo $ma_id ?>'>
<colgroup width=20% class='col1 pad1 bold right'>
<colgroup width=80% class='col2 pad2'>
<tr>
@ -61,11 +61,11 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>회원 ID</td>
<td>
<input type=radio name='mb_id1' value='1' onclick="mb_id1_click(1);" <?=$mb_id1?"checked":"";?>> 전체
<input type=radio name='mb_id1' value='0' onclick="mb_id1_click(0);" <?=!$mb_id1?"checked":"";?>> 구간
<input type=radio id="mb_id1" name="mb_id1" value='1' onclick="mb_id1_click(1);" <?=$mb_id1?"checked":"";?>> 전체
<input type=radio id="mb_id1" name="mb_id1" value='0' onclick="mb_id1_click(0);" <?=!$mb_id1?"checked":"";?>> 구간
<br>
<input type=text id=mb_id1_from name=mb_id1_from value="<?=$mb_id1_from?>"> 에서
<input type=text id=mb_id1_to name=mb_id1_to value="<?=$mb_id1_to?>"> 까지
<input type="text" id=mb_id1_from id="mb_id1_from" name="mb_id1_from" value="<?=$mb_id1_from?>"> 에서
<input type="text" id=mb_id1_to id="mb_id1_to" name="mb_id1_to" value="<?=$mb_id1_to?>"> 까지
<script type="text/javascript">
function mb_id1_click(num)
@ -89,17 +89,17 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>생일</td>
<td>
<input type=text name='mb_birth_from' size=4 maxlength=4 value="<?=$mb_birth_from?>"> 부터
<input type=text name='mb_birth_to' size=4 maxlength=4 value="<?=$mb_birth_to?>"> 까지 (예 : 5월5일 인 경우, 0505 와 같이 입력 , 둘다 입력해야함)</td>
<input type="text" id="mb_birth_from" name="mb_birth_from" size=4 maxlength=4 value="<?=$mb_birth_from?>"> 부터
<input type="text" id="mb_birth_to" name="mb_birth_to" size=4 maxlength=4 value="<?=$mb_birth_to?>"> 까지 (예 : 5월5일 인 경우, 0505 와 같이 입력 , 둘다 입력해야함)</td>
</tr>
<tr class='ht'>
<td>E-mail에</td>
<td><input type=text name='mb_email' value="<?=$mb_email?>"> 단어 포함 (예 : @sir.co.kr)</td>
<td><input type="text" id="mb_email" name="mb_email" value="<?=$mb_email?>"> 단어 포함 (예 : @sir.co.kr)</td>
</tr>
<tr class='ht'>
<td>성별</td>
<td>
<select id=mb_sex name=mb_sex>
<select id=mb_sex id="mb_sex" name="mb_sex">
<option value=''>전체
<option value='F'>여자
<option value='M'>남자
@ -110,7 +110,7 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>지역</td>
<td>
<select id=mb_area name=mb_area>
<select id=mb_area id="mb_area" name="mb_area">
<option value=''>전체
<option value='서울'>서울
<option value='부산'>부산
@ -135,7 +135,7 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>메일링</td>
<td>
<select id=mb_mailling name=mb_mailling>
<select id=mb_mailling id="mb_mailling" name="mb_mailling">
<option value='1'>수신동의한 회원만
<option value=''>전체
</select>
@ -145,12 +145,12 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>권한</td>
<td>
<select id=mb_level_from name=mb_level_from>
<select id=mb_level_from id="mb_level_from" name="mb_level_from">
<? for ($i=1; $i<=10; $i++) { ?>
<option value='<? echo $i ?>'><? echo $i ?>
<? } ?>
</select> 에서
<select id=mb_level_to name=mb_level_to>
<select id=mb_level_to id="mb_level_to" name="mb_level_to">
<? for ($i=1; $i<=10; $i++) { ?>
<option value='<? echo $i ?>'><? echo $i ?>
<? } ?>
@ -162,7 +162,7 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>게시판그룹회원</td>
<td>
<select id=gr_id name=gr_id>
<select id=gr_id id="gr_id" name="gr_id">
<option value=''>전체
<?
$sql = " select gr_id, gr_subject from {$g4['group_table']} order by gr_subject ";

View File

@ -93,13 +93,13 @@ include_once('./admin.head.php');
<?//=subtitle_bar($html_title)?><p>
<div align=right>선택된 회원수 : <?=number_format($cnt)?> 명</div>
<form name=fmailselectlist method=post onsubmit="return fmailselectlist_submit(this);">
<input type=hidden name=token value='<?=$token?>'>
<form id="fmailselectlist" name="fmailselectlist" method=post onsubmit="return fmailselectlist_submit(this);">
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table cellpadding=4 cellspacing=1 width=100% class=tablebg>
<input type="hidden" name="ma_id" value="<? echo $ma_id ?>">
<input type="hidden" id="ma_id" name="ma_id" value="<? echo $ma_id ?>">
<tr>
<td align=center>
<select size=25 name='list' style='width:500px;'>
<select size=25 id="list" name="list" style='width:500px;'>
<option>번호 . 회원아이디 / 이름 / 별명 / 생일 / E-mail
<?
$sql = " select mb_id, mb_name, mb_nick, mb_email, mb_birth, mb_datetime $sql_common $sql_where order by mb_id ";
@ -116,7 +116,7 @@ include_once('./admin.head.php');
}
?>
</select>
<textarea name="ma_list" style="display:none"><?=$ma_list?></textarea>
<textarea id="ma_list" name="ma_list" style="display:none"><?=$ma_list?></textarea>
</td>
</tr>
</table>

View File

@ -8,8 +8,8 @@ $token = get_token();
if ($w == '')
{
$required_mb_id = 'required minlength=3 alphanumericunderline itemname="회원아이디"';
$required_mb_password = 'required itemname="패스워드"';
$required_mb_id = 'required minlength=3 alphanumericunderline itemid="회원아이디" name="회원아이디"';
$required_mb_password = 'required itemid="패스워드" name="패스워드"';
$mb['mb_mailling'] = 1;
$mb['mb_open'] = 1;
@ -64,14 +64,14 @@ include_once('./admin.head.php');
?>
<table width=100% align=center cellpadding=0 cellspacing=0>
<form name=fmember method=post onsubmit="return fmember_submit(this);" enctype="multipart/form-data" autocomplete="off">
<input type=hidden name=w value='<?=$w?>'>
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fmember" name="fmember" method=post onsubmit="return fmember_submit(this);" enctype="multipart/form-data" autocomplete="off">
<input type="hidden" id="w" name="w" value='<?=$w?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<colgroup width=20% class='col1 pad1 bold right'>
<colgroup width=30% class='col2 pad2'>
<colgroup width=20% class='col1 pad1 bold right'>
@ -83,17 +83,17 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>아이디</td>
<td>
<input type=text name='mb_id' size=20 maxlength=20 minlength=2 <?=$required_mb_id?> itemname='아이디' value='<? echo $mb['mb_id'] ?>'>
<input type="text" id="mb_id" name="mb_id" size=20 maxlength=20 minlength=2 <?=$required_mb_id?> itemname='아이디' value='<? echo $mb['mb_id'] ?>'>
<?if ($w=='u'){?><a href='./boardgroupmember_form.php?mb_id=<?=$mb['mb_id']?>'>접근가능그룹보기</a><?}?>
</td>
<td>패스워드</td>
<td><input type=password name='mb_password' size=20 maxlength=20 <?=$required_mb_password?> itemname='암호'></td>
<td><input type=password id="mb_password" name="mb_password" size=20 maxlength=20 <?=$required_mb_password?> itemname='암호'></td>
</tr>
<tr class='ht'>
<td>이름(실명)</td>
<td><input type=text name='mb_name' maxlength=20 minlength=2 required itemname='이름(실명)' value='<? echo $mb['mb_name'] ?>'></td>
<td><input type="text" id="mb_name" name="mb_name" maxlength=20 minlength=2 required itemname='이름(실명)' value='<? echo $mb['mb_name'] ?>'></td>
<td>별명</td>
<td><input type=text name='mb_nick' maxlength=20 minlength=2 required itemname='별명' value='<? echo $mb['mb_nick'] ?>'></td>
<td><input type="text" id="mb_nick" name="mb_nick" maxlength=20 minlength=2 required itemname='별명' value='<? echo $mb['mb_nick'] ?>'></td>
</tr>
<tr class='ht'>
<td>회원 권한</td>
@ -103,64 +103,64 @@ include_once('./admin.head.php');
</tr>
<tr class='ht'>
<td>E-mail</td>
<td><input type=text name='mb_email' size=40 maxlength=100 required email itemname='e-mail' value='<? echo $mb['mb_email'] ?>'></td>
<td><input type="text" id="mb_email" name="mb_email" size=40 maxlength=100 required email itemid="e-mail" name="e-mail" value='<? echo $mb['mb_email'] ?>'></td>
<td>홈페이지</td>
<td><input type=text name='mb_homepage' size=40 maxlength=255 itemname='홈페이지' value='<? echo $mb['mb_homepage'] ?>'></td>
<td><input type="text" id="mb_homepage" name="mb_homepage" size=40 maxlength=255 itemname='홈페이지' value='<? echo $mb['mb_homepage'] ?>'></td>
</tr>
<tr class='ht'>
<td>전화번호</td>
<td><input type=text name='mb_tel' maxlength=20 itemname='전화번호' value='<? echo $mb['mb_tel'] ?>'></td>
<td><input type="text" id="mb_tel" name="mb_tel" maxlength=20 itemname='전화번호' value='<? echo $mb['mb_tel'] ?>'></td>
<td>핸드폰번호</td>
<td><input type=text name='mb_hp' maxlength=20 itemname='핸드폰번호' value='<? echo $mb['mb_hp'] ?>'></td>
<td><input type="text" id="mb_hp" name="mb_hp" maxlength=20 itemname='핸드폰번호' value='<? echo $mb['mb_hp'] ?>'></td>
</tr>
<tr class='ht'>
<td>주소</td>
<td>
<input type=text name='mb_zip1' size=4 maxlength=3 readonly itemname='우편번호 앞자리' value='<? echo $mb['mb_zip1'] ?>'> -
<input type=text name='mb_zip2' size=4 maxlength=3 readonly itemname='우편번호 뒷자리' value='<? echo $mb['mb_zip2'] ?>'>
<input type="text" id="mb_zip1" name="mb_zip1" size=4 maxlength=3 readonly itemname='우편번호 앞자리' value='<? echo $mb['mb_zip1'] ?>'> -
<input type="text" id="mb_zip2" name="mb_zip2" size=4 maxlength=3 readonly itemname='우편번호 뒷자리' value='<? echo $mb['mb_zip2'] ?>'>
<a href="javascript:;" onclick="win_zip('fmember', 'mb_zip1', 'mb_zip2', 'mb_addr1', 'mb_addr2');"><img src='<?=$g4['bbs_img_path']?>/btn_zip.gif' align=absmiddle border=0></a>
<br><input type=text name='mb_addr1' size=40 readonly value='<? echo $mb['mb_addr1'] ?>'>
<br><input type=text name='mb_addr2' size=25 itemname='상세주소' value='<? echo $mb['mb_addr2'] ?>'> 상세주소 입력</td>
<br><input type="text" id="mb_addr1" name="mb_addr1" size=40 readonly value='<? echo $mb['mb_addr1'] ?>'>
<br><input type="text" id="mb_addr2" name="mb_addr2" size=25 itemname='상세주소' value='<? echo $mb['mb_addr2'] ?>'> 상세주소 입력</td>
<td>회원아이콘</td>
<td colspan=3>
<input type=file name='mb_icon'><br>이미지 크기는 <?=$config['cf_member_icon_width']?>x<?=$config['cf_member_icon_height']?>으로 해주세요.
<input type=file id="mb_icon" name="mb_icon"><br>이미지 크기는 <?=$config['cf_member_icon_width']?>x<?=$config['cf_member_icon_height']?>으로 해주세요.
<?
$mb_dir = substr($mb['mb_id'],0,2);
$icon_file = $g4['path'].'/data/member/'.$mb_dir.'/'.$mb['mb_id'].'.gif';
if (file_exists($icon_file)) {
echo '<br><img src="'.$icon_file.'" align=absmiddle>';
echo ' <input type=checkbox name="del_mb_icon" value="1" class="csscheck">삭제';
echo ' <input type=checkbox id="del_mb_icon" name="del_mb_icon" value="1" class="csscheck">삭제';
}
?>
</td>
</tr>
<tr class='ht'>
<td>생년월일</td>
<td><input type=text name=mb_birth size=9 maxlength=8 value='<? echo $mb['mb_birth'] ?>'></td>
<td><input type="text" id="mb_birth" name="mb_birth" size=9 maxlength=8 value='<? echo $mb['mb_birth'] ?>'></td>
<td>남녀</td>
<td>
<select name=mb_sex><option value=''>----<option value='F'>여자<option value='M'>남자</select>
<select id="mb_sex" name="mb_sex"><option value=''>----<option value='F'>여자<option value='M'>남자</select>
<script type="text/javascript"> document.fmember.mb_sex.value = "<?=$mb['mb_sex']?>"; </script></td>
</tr>
<tr class='ht'>
<td>메일 수신</td>
<td><input type=checkbox name=mb_mailling value='1' <?=$mailling_checked?>> 정보 메일을 받음</td>
<td><input type=checkbox id="mb_mailling" name="mb_mailling" value='1' <?=$mailling_checked?>> 정보 메일을 받음</td>
<td>SMS 수신</td>
<td><input type=checkbox name=mb_sms value='1' <?=$sms_checked?>> 문자메세지를 받음</td>
<td><input type=checkbox id="mb_sms" name="mb_sms" value='1' <?=$sms_checked?>> 문자메세지를 받음</td>
</tr>
<tr class='ht'>
<td>정보 공개</td>
<td colspan=3><input type=checkbox name=mb_open value='1' <?=$open_checked?>> 타인에게 자신의 정보를 공개</td>
<td colspan=3><input type=checkbox id="mb_open" name="mb_open" value='1' <?=$open_checked?>> 타인에게 자신의 정보를 공개</td>
</tr>
<tr class='ht'>
<td>서명</td>
<td><textarea name=mb_signature rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_signature'] ?></textarea></td>
<td><textarea id="mb_signature" name="mb_signature" rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_signature'] ?></textarea></td>
<td>자기 소개</td>
<td><textarea name=mb_profile rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_profile'] ?></textarea></td>
<td><textarea id="mb_profile" name="mb_profile" rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_profile'] ?></textarea></td>
</tr>
<tr class='ht'>
<td>메모</td>
<td colspan=3><textarea name=mb_memo rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_memo'] ?></textarea></td>
<td colspan=3><textarea id="mb_memo" name="mb_memo" rows=5 style='width:99%; word-break:break-all;'><? echo $mb['mb_memo'] ?></textarea></td>
</tr>
<? if ($w == 'u') { ?>
@ -177,7 +177,7 @@ include_once('./admin.head.php');
<? if ($config['cf_use_email_certify']) { ?>
<td>인증일시</td>
<td><?=$mb['mb_email_certify']?>
<? if ($mb['mb_email_certify'] == '0000-00-00 00:00:00') { echo '<input type=checkbox name=passive_certify>수동인증'; } ?></td>
<? if ($mb['mb_email_certify'] == '0000-00-00 00:00:00') { echo '<input type=checkbox id="passive_certify" name="passive_certify">수동인증'; } ?></td>
<? } else { ?>
<td></td>
<td></td>
@ -195,17 +195,17 @@ include_once('./admin.head.php');
<tr class='ht'>
<td>탈퇴일자</td>
<td><input type=text name=mb_leave_date size=9 maxlength=8 value='<? echo $mb['mb_leave_date'] ?>'></td>
<td><input type="text" id="mb_leave_date" name="mb_leave_date" size=9 maxlength=8 value='<? echo $mb['mb_leave_date'] ?>'></td>
<td>접근차단일자</td>
<td><input type=text name=mb_intercept_date size=9 maxlength=8 value='<? echo $mb['mb_intercept_date'] ?>'> <input type=checkbox value='<? echo date("Ymd"); ?>' onclick='if (this.form.mb_intercept_date.value==this.form.mb_intercept_date.defaultValue) { this.form.mb_intercept_date.value=this.value; } else { this.form.mb_intercept_date.value=this.form.mb_intercept_date.defaultValue; } '>오늘</td>
<td><input type="text" id="mb_intercept_date" name="mb_intercept_date" size=9 maxlength=8 value='<? echo $mb['mb_intercept_date'] ?>'> <input type=checkbox value='<? echo date("Ymd"); ?>' onclick='if (this.form.mb_intercept_date.value==this.form.mb_intercept_date.defaultValue) { this.form.mb_intercept_date.value=this.value; } else { this.form.mb_intercept_date.value=this.form.mb_intercept_date.defaultValue; } '>오늘</td>
</tr>
<? for ($i=1; $i<=10; $i=$i+2) { $k=$i+1; ?>
<tr class='ht'>
<td>여분 필드 <?=$i?></td>
<td><input type=text style='width:99%;' name='mb_<?=$i?>' maxlength=255 value='<?=$mb["mb_$i"]?>'></td>
<td><input type="text" style='width:99%;' name='mb_<?=$i?>' maxlength=255 value='<?=$mb["mb_$i"]?>'></td>
<td>여분 필드 <?=$k?></td>
<td><input type=text style='width:99%;' name='mb_<?=$k?>' maxlength=255 value='<?=$mb["mb_$k"]?>'></td>
<td><input type="text" style='width:99%;' name='mb_<?=$k?>' maxlength=255 value='<?=$mb["mb_$k"]?>'></td>
</tr>
<? } ?>
@ -220,7 +220,7 @@ include_once('./admin.head.php');
관리자 패스워드
</td>
<td colspan=3>
<input class='ed' type='password' name='admin_password' itemname="관리자 패스워드" required>
<input class='ed' type='password' id="admin_password" name="admin_password" itemid="관리자 패스워드" name="관리자 패스워드" required>
<?=help('관리자 권한을 빼앗길 것에 대비하여 로그인한 관리자의 패스워드를 한번 더 묻는것 입니다.');?>
</td>
</tr>

View File

@ -92,15 +92,15 @@ var list_delete_php = 'member_list_delete.php';
</script>
<table width=100%>
<form name=fsearch method=get>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left><?=$listall?>
<td><?=$listall?>
(총회원수 : <?=number_format($total_count)?>,
<a href='?sst=mb_intercept_date&sod=desc&sfl=<?=$sfl?>&stx=<?=$stx?>' title='차단된 회원부터 출력'><font color=orange>차단 : <?=number_format($intercept_count)?></font></a>,
<a href='?sst=mb_leave_date&sod=desc&sfl=<?=$sfl?>&stx=<?=$stx?>' title='탈퇴한 회원부터 출력'><font color=crimson>탈퇴 : <?=number_format($leave_count)?></font></a>)
</td>
<td width=50% align=right>
<select name=sfl class=cssfl>
<td>
<select id="sfl" name="sfl" class=cssfl>
<option value='mb_id'>회원아이디</option>
<option value='mb_name'>이름</option>
<option value='mb_nick'>별명</option>
@ -113,19 +113,19 @@ var list_delete_php = 'member_list_delete.php';
<option value='mb_ip'>IP</option>
<option value='mb_recommend'>추천인</option>
</select>
<input type=text name=stx required itemname='검색어' value='<? echo $stx ?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<? echo $stx ?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
<form name=fmemberlist method=post>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fmemberlist" name="fmemberlist" method=post>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table width=100% cellpadding=0 cellspacing=0>
<colgroup width=30>
@ -143,7 +143,7 @@ var list_delete_php = 'member_list_delete.php';
<colgroup width=80>
<tr><td colspan='<?=$colspan?>' class='line1'></td></tr>
<tr class='bgcol1 bold col1 ht center'>
<td><input type=checkbox name=chkall value='1' onclick='check_all(this.form)'></td>
<td><input type=checkbox id="chkall" name="chkall" value='1' onclick='check_all(this.form)'></td>
<td><?=subject_sort_link('mb_id')?>회원아이디</a></td>
<td><?=subject_sort_link('mb_name')?>이름</a></td>
<td><?=subject_sort_link('mb_nick')?>별명</a></td>
@ -194,9 +194,9 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
$list = $i%2;
echo "
<input type=hidden name=mb_id[$i] value='{$row['mb_id']}'>
<input type="hidden" id="mb_id" name="mb_id"[$i] value='{$row['mb_id']}'>
<tr class='list$list col1 ht center'>
<td><input type=checkbox name=chk[] value='$i'></td>
<td><input type=checkbox id="chk" name="chk"[] value='$i'></td>
<td title='{$row['mb_id']}'><nobr style='display:block; overflow:hidden; width:90;'>&nbsp;$mb_id</nobr></td>
<td><nobr style='display:block; overflow:hidden; width:90px;'>{$row['mb_name']}</nobr></td>
<td><nobr style='display:block; overflow:hidden; width:90px;'><u>$mb_nick</u></nobr></td>
@ -207,7 +207,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
<td>".($row['mb_open']?'&radic;':'&nbsp;')."</td>
<!-- <td title='{$row['mb_leave_date']}'>".($row['mb_leave_date']?'&radic;':'&nbsp;')."</td> -->
<td title='{$row['mb_email_certify']}'>".(preg_match('/[1-9]/', $row['mb_email_certify'])?'&radic;':'&nbsp;')."</td>
<td title='{$row['mb_intercept_date']}'><input type=checkbox name=mb_intercept_date[$i] ".($row['mb_intercept_date']?'checked':'')." value='$intercept_date'></td>
<td title='{$row['mb_intercept_date']}'><input type=checkbox id="mb_intercept_date" name="mb_intercept_date"[$i] ".($row['mb_intercept_date']?'checked':'')." value='$intercept_date'></td>
<td>$group</td>
<td>$s_mod $s_del $s_grp</td>
</tr>";
@ -225,7 +225,7 @@ echo "<tr><td width=50%>";
echo "<input type=button class='btn1' value='선택수정' onclick=\"btn_check(this.form, 'update')\">&nbsp;";
echo "<input type=button class='btn1' value='선택삭제' onclick=\"btn_check(this.form, 'delete')\">";
echo "</td>";
echo "<td width=50% align=right>$pagelist</td></tr></table>\n";
echo "<td>$pagelist</td></tr></table>\n";
if ($stx)
echo "<script type='text/javascript'>document.fsearch.sfl.value = '$sfl';</script>\n";
@ -248,14 +248,14 @@ function post_delete(action_url, val)
}
</script>
<form name='fpost' method='post'>
<input type='hidden' name='sst' value='<?=$sst?>'>
<input type='hidden' name='sod' value='<?=$sod?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='token' value='<?=$token?>'>
<input type='hidden' name='mb_id'>
<form id="fpost" name="fpost" method='post'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<input type="hidden" id="mb_id" name="mb_id">
</form>
<?

View File

@ -75,9 +75,9 @@ function point_clear()
</script>
<table width=100%>
<form name=fsearch method=get>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left>
<td>
<?=$listall?> (건수 : <?=number_format($total_count)?>)
<?
if ($mb['mb_id'])
@ -89,24 +89,24 @@ function point_clear()
?>
<? if ($is_admin == 'super') { ?><!-- <a href="javascript:point_clear();">포인트정리</a> --><? } ?>
</td>
<td width=50% align=right>
<select name=sfl class=cssfl>
<td>
<select id="sfl" name="sfl" class=cssfl>
<option value='mb_id'>회원아이디</option>
<option value='po_content'>내용</option>
</select>
<input type=text name=stx required itemname='검색어' value='<?=$stx?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<?=$stx?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
<form name=fpointlist method=post>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fpointlist" name="fpointlist" method=post>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table width=100% cellpadding=0 cellspacing=1>
<colgroup width=30>
@ -119,7 +119,7 @@ function point_clear()
<colgroup width=80>
<tr><td colspan='<?=$colspan?>' class='line1'></td></tr>
<tr class='bgcol1 bold col1 ht center'>
<td><input type=checkbox name=chkall value='1' onclick='check_all(this.form)'></td>
<td><input type=checkbox id="chkall" name="chkall" value='1' onclick='check_all(this.form)'></td>
<td><?=subject_sort_link('mb_id')?>회원아이디</a></td>
<td>이름</td>
<td>별명</td>
@ -149,10 +149,10 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
$list = $i%2;
echo "
<input type=hidden name=po_id[$i] value='{$row['po_id']}'>
<input type=hidden name=mb_id[$i] value='{$row['mb_id']}'>
<input type="hidden" id="po_id" name="po_id"[$i] value='{$row['po_id']}'>
<input type="hidden" id="mb_id" name="mb_id"[$i] value='{$row['mb_id']}'>
<tr class='list$list col1 ht center'>
<td><input type=checkbox name=chk[] value='$i'></td>
<td><input type=checkbox id="chk" name="chk"[] value='$i'></td>
<td><a href='?sfl=mb_id&stx={$row['mb_id']}'>{$row['mb_id']}</a></td>
<td>{$row2['mb_name']}</td>
<td>$mb_nick</td>
@ -174,7 +174,7 @@ echo "<table width=100% cellpadding=3 cellspacing=1>";
echo "<tr><td width=50%>";
echo "<input type=button class='btn1' value='선택삭제' onclick=\"btn_check(this.form, 'delete')\">";
echo "</td>";
echo "<td width=50% align=right>$pagelist</td></tr></table>\n";
echo "<td>$pagelist</td></tr></table>\n";
if ($stx)
echo "<script type='text/javascript'>document.fsearch.sfl.value = '$sfl';</script>\n";
@ -190,13 +190,13 @@ else
<?$colspan=5?>
<p>
<form name=fpointlist2 method=post onsubmit="return fpointlist2_submit(this);" autocomplete="off">
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fpointlist2" name="fpointlist2" method=post onsubmit="return fpointlist2_submit(this);" autocomplete="off">
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table width=100% cellpadding=0 cellspacing=1 class=tablebg>
<colgroup width=150>
<colgroup width=''>
@ -213,10 +213,10 @@ else
</tr>
<tr><td colspan='<?=$colspan?>' class='line2'></td></tr>
<tr class='ht center'>
<td><input type=text name=mb_id required itemname='회원아이디' value='<?=$mb_id?>'></td>
<td><input type=text name=po_content required itemname='내용' style='width:99%;'></td>
<td><input type=text name=po_point required itemname='포인트' size=10></td>
<td><input type=password name=admin_password required itemname='관리자 패스워드'></td>
<td><input type="text" id="mb_id" name="mb_id" required itemname='회원아이디' value='<?=$mb_id?>'></td>
<td><input type="text" id="po_content" name="po_content" required itemname='내용' style='width:99%;'></td>
<td><input type="text" id="po_point" name="po_point" required itemname='포인트' size=10></td>
<td><input type=password id="admin_password" name="admin_password" required itemname='관리자 패스워드'></td>
<td><input type=submit class=btn1 value=' 확 인 '></td>
</tr>
<tr><td colspan='<?=$colspan?>' class='line2'></td></tr>

View File

@ -20,15 +20,15 @@ $g4['title'] = $html_title;
include_once('./admin.head.php');
?>
<form name=fpoll method=post onsubmit="return fpoll_check(this);" enctype="multipart/form-data">
<input type=hidden name=po_id value='<?=$po_id?>'>
<input type=hidden name=w value='<?=$w?>'>
<input type=hidden name=sfl value='<?=$sfl?>'>
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=sst value='<?=$sst?>'>
<input type=hidden name=sod value='<?=$sod?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=token value='<?=$token?>'>
<form id="fpoll" name="fpoll" method=post onsubmit="return fpoll_check(this);" enctype="multipart/form-data">
<input type="hidden" id="po_id" name="po_id" value='<?=$po_id?>'>
<input type="hidden" id="w" name="w" value='<?=$w?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<table width=100% cellpadding=0 cellspacing=0>
<colgroup width=20% class='col1 pad1 bold right'>
<colgroup width=30% class='col2 pad2'>
@ -40,7 +40,7 @@ include_once('./admin.head.php');
<tr><td colspan=4 class='line1'></td></tr>
<tr class='ht'>
<td>투표 제목</td>
<td colspan=3><input type='text' name='po_subject' style='width:99%;' required itemname='투표 제목' value='<?=$po['po_subject']?>' maxlength="125"></td>
<td colspan=3><input type="text" id="po_subject" name="po_subject" style='width:99%;' required itemname='투표 제목' value='<?=$po['po_subject']?>' maxlength="125"></td>
</tr>
<?
@ -49,7 +49,7 @@ for ($i=1; $i<=9; $i++) {
$itemname = "";
if ($i==1 || $i==2) {
$required = 'required';
$itemname = 'itemname="항목'.$i.'"';
$itemname = 'itemid="항목'.$i.'" name="항목'.$i.'"';
}
$po_poll = get_text($po['po_poll'.$i]);
@ -57,9 +57,9 @@ for ($i=1; $i<=9; $i++) {
echo <<<HEREDOC
<tr class='ht'>
<td>항목{$i}</td>
<td><input type="text" name="po_poll{$i}" {$required} {$itemname} value="{$po_poll}" style="width:99%;" maxlength="125"></td>
<td><input type="text" id="po_poll{$i}" name="po_poll{$i}" {$required} {$itemname} value="{$po_poll}" style="width:99%;" maxlength="125"></td>
<td>투표수</td>
<td><input type="text" name="po_cnt{$i}" size=5 value="{$po['po_cnt'.$i]}"></td>
<td><input type="text" id="po_cnt{$i}" name="po_cnt{$i}" size=5 value="{$po['po_cnt'.$i]}"></td>
</tr>
HEREDOC;
@ -68,7 +68,7 @@ HEREDOC;
<tr class='ht'>
<td>기타의견</td>
<td colspan=3><input type='text' name='po_etc' style='width:99%;' value='<?=get_text($po['po_etc'])?>' maxlength="125"></td>
<td colspan=3><input type="text" id="po_etc" name="po_etc" style='width:99%;' value='<?=get_text($po['po_etc'])?>' maxlength="125"></td>
</tr>
<tr class='ht'>
@ -78,24 +78,24 @@ HEREDOC;
<tr class='ht'>
<td>포인트</td>
<td colspan=3><input type='text' name='po_point' size='10' value='<?=$po['po_point']?>'> 점 (투표한 회원에게 부여함)</td>
<td colspan=3><input type="text" id="po_point" name="po_point" size='10' value='<?=$po['po_point']?>'> 점 (투표한 회원에게 부여함)</td>
</tr>
<? if ($w == 'u') { ?>
<tr class='ht'>
<td>투표시작일</td>
<td colspan=3><input type="text" name="po_date" size=10 maxlength=10 value="<?=$po['po_date']?>"></td>
<td colspan=3><input type="text" id="po_date" name="po_date" size=10 maxlength=10 value="<?=$po['po_date']?>"></td>
</tr>
<tr class='ht'>
<td>투표참가 IP</td>
<td colspan=3><textarea name="po_ips" rows=10 style='width:99%;' readonly><?=preg_replace("/\n/", " / ", $po['po_ips'])?></textarea></td>
<td colspan=3><textarea id="po_ips" name="po_ips" rows=10 style='width:99%;' readonly><?=preg_replace("/\n/", " / ", $po['po_ips'])?></textarea></td>
</tr>
<tr class='ht'>
<td>투표참가 회원</td>
<td colspan=3><textarea name="mb_ids" rows=10 style='width:99%;' readonly><?=preg_replace("/\n/", " / ", $po['mb_ids'])?></textarea></td>
<td colspan=3><textarea id="mb_ids" name="mb_ids" rows=10 style='width:99%;' readonly><?=preg_replace("/\n/", " / ", $po['mb_ids'])?></textarea></td>
</tr>
<? } ?>

View File

@ -53,15 +53,15 @@ $colspan = 6;
?>
<table width=100%>
<form name=fsearch method=get>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left><?=$listall?> (투표수 : <?=number_format($total_count)?>개)</td>
<td width=50% align=right>
<select name=sfl>
<td><?=$listall?> (투표수 : <?=number_format($total_count)?>개)</td>
<td>
<select id="sfl" name="sfl">
<option value='po_subject'>제목</option>
</select>
<input type=text name=stx required itemname='검색어' value='<?=$stx?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<?=$stx?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
@ -138,15 +138,15 @@ function post_delete(action_url, val)
}
</script>
<form name='fpost' method='post'>
<input type='hidden' name='sst' value='<?=$sst?>'>
<input type='hidden' name='sod' value='<?=$sod?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='token' value='<?=$token?>'>
<input type='hidden' name='w' value='d'>
<input type='hidden' name='po_id'>
<form id="fpost" name="fpost" method='post'>
<input type="hidden" id="sst" name="sst" value='<?=$sst?>'>
<input type="hidden" id="sod" name="sod" value='<?=$sod?>'>
<input type="hidden" id="sfl" name="sfl" value='<?=$sfl?>'>
<input type="hidden" id="stx" name="stx" value='<?=$stx?>'>
<input type="hidden" id="page" name="page" value='<?=$page?>'>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<input type="hidden" id="w" name="w" value='d'>
<input type="hidden" id="po_id" name="po_id">
</form>
<?

View File

@ -72,27 +72,27 @@ var list_delete_php = 'popular_list.php';
</script>
<table width=100% cellpadding=3 cellspacing=1>
<form name=fsearch method=get>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left><?=$listall?> (건수 : <?=number_format($total_count)?>개)</td>
<td width=50% align=right>
<select name=sfl>
<td><?=$listall?> (건수 : <?=number_format($total_count)?>개)</td>
<td>
<select id="sfl" name="sfl">
<option value='pp_word'>검색어</option>
<option value='pp_date'>등록일</option>
</select>
<input type=text name=stx required itemname='검색어' value='<?=$stx?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id="stx" name="stx" required itemname='검색어' value='<?=$stx?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
<form name=fpopularlist method=post>
<input type=hidden name=sst value="<?=$sst?>">
<input type=hidden name=sod value="<?=$sod?>">
<input type=hidden name=sfl value="<?=$sfl?>">
<input type=hidden name=stx value="<?=$stx?>">
<input type=hidden name=page value="<?=$page?>">
<input type=hidden name=token value="<?=$token?>">
<form id="fpopularlist" name="fpopularlist" method=post>
<input type="hidden" id="sst" name="sst" value="<?=$sst?>">
<input type="hidden" id="sod" name="sod" value="<?=$sod?>">
<input type="hidden" id="sfl" name="sfl" value="<?=$sfl?>">
<input type="hidden" id="stx" name="stx" value="<?=$stx?>">
<input type="hidden" id="page" name="page" value="<?=$page?>">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<table width=100% cellpadding=0 cellspacing=1>
<colgroup width=30>
<colgroup width=>
@ -100,7 +100,7 @@ var list_delete_php = 'popular_list.php';
<colgroup width=150>
<tr><td colspan='<?=$colspan?>' class='line1'></td></tr>
<tr class='bgcol1 bold col1 ht center'>
<td><input type=checkbox name=chkall value="1" onclick="check_all(this.form)"></td>
<td><input type=checkbox id="chkall" name="chkall" value="1" onclick="check_all(this.form)"></td>
<td><?=subject_sort_link('pp_word')?>검색어</a></td>
<td>등록일</td>
<td>등록IP</td>
@ -112,9 +112,9 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
$word = get_text($row['pp_word']);
$list = $i % 2;
echo "<input type=hidden name=pp_id[$i] value='{$row['pp_id']}'>";
echo "<input type="hidden" id="pp_id" name="pp_id"[$i] value='{$row['pp_id']}'>";
echo "<tr class='list$list col1 ht center'>";
echo "<td height=25><input type=checkbox name=chk[] value='$i'></td>";
echo "<td height=25><input type=checkbox id="chk" name="chk"[] value='$i'></td>";
echo "<td align='left'>&nbsp; <a href='{$_SERVER['PHP_SELF']}?sfl=pp_word&stx=$word'>$word</a></td>";
echo "<td>{$row['pp_date']}</td>";
echo "<td>{$row['pp_ip']}</td>";
@ -137,7 +137,7 @@ if ($is_admin == 'super')
echo "<input type=button class='btn1' value='선택삭제' onclick=\"btn_check(this.form, 'delete')\">";
echo "</td>";
echo "<td width=50% align=right>$pagelist</td></tr></table>\n";
echo "<td>$pagelist</td></tr></table>\n";
if ($stx)
echo "<script>document.fsearch.sfl.value = '$sfl';</script>";

View File

@ -105,26 +105,26 @@ jQuery(function($){
?>
<table width=100% cellpadding=3 cellspacing=1>
<form name=fsearch method=get>
<form id="fsearch" name="fsearch" method=get>
<tr>
<td width=50% align=left><?=$listall?> (건수 : <?=number_format($total_count)?>개)</td>
<td width=50% align=right>
<td><?=$listall?> (건수 : <?=number_format($total_count)?>개)</td>
<td>
기간 :
<input type='text' id='fr_date' name='fr_date' size=11 maxlength=10 value='<?=$fr_date?>'>
<input type="text" id='fr_date' id="fr_date" name="fr_date" size=11 maxlength=10 value='<?=$fr_date?>'>
-
<input type='text' id='to_date' name='to_date' size=11 maxlength=10 value='<?=$to_date?>'>
<input type=image src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
<input type="text" id='to_date' id="to_date" name="to_date" size=11 maxlength=10 value='<?=$to_date?>'>
<input type="image" src='<?=$g4['admin_path']?>/img/btn_search.gif' align=absmiddle></td>
</tr>
</form>
</table>
<form name=fpopularrank method=post>
<input type=hidden name=sst value="<?=$sst?>">
<input type=hidden name=sod value="<?=$sod?>">
<input type=hidden name=sfl value="<?=$sfl?>">
<input type=hidden name=stx value="<?=$stx?>">
<input type=hidden name=page value="<?=$page?>">
<input type=hidden name=token value="<?=$token?>">
<form id="fpopularrank" name="fpopularrank" method=post>
<input type="hidden" id="sst" name="sst" value="<?=$sst?>">
<input type="hidden" id="sod" name="sod" value="<?=$sod?>">
<input type="hidden" id="sfl" name="sfl" value="<?=$sfl?>">
<input type="hidden" id="stx" name="stx" value="<?=$stx?>">
<input type="hidden" id="page" name="page" value="<?=$page?>">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<table width=100% cellpadding=0 cellspacing=1>
<colgroup width=>
<colgroup width=150>
@ -166,7 +166,7 @@ if ($is_admin == 'super')
echo "<input type=button class='btn1' value='선택삭제' onclick=\"btn_check(this.form, 'delete')\">";
echo "</td>";
echo "<td width=50% align=right>$pagelist</td></tr></table>\n";
echo "<td>$pagelist</td></tr></table>\n";
if ($stx)
echo "<script>document.fsearch.sfl.value = '$sfl';</script>";

View File

@ -35,14 +35,14 @@ $token = get_token();
<img src='<?=$g4['admin_path']?>/img/icon_title.gif'> <span class=title><?=$g4['title']?></span>
<p>
<form name=fsendmailtest method=post>
<input type=hidden name=token value='<?=$token?>'>
<form id="fsendmailtest" name="fsendmailtest" method=post>
<input type="hidden" id="token" name="token" value='<?=$token?>'>
<p>고객님들께서 메일이 오지 않는다고 하면 사용하는 메뉴입니다.
<p>입력한 메일주소로 테스트 메일을 발송합니다.
<p>만약 [메일검사] 라는 내용으로 메일이 도착하지 않는다면 보내는 메일서버와 받는 메일 서버중 문제가 발생했을 가능성이 있습니다.
<p>메일을 보냈는데도 도착하지 않는다면 다른 여러곳으로도 메일을 발송하여 주십시오.
<p>여러곳으로 메일을 발송하시려면 , 로 메일을 구분하십시오.
<p>받는 메일주소 : <input type=text name=mail size=40 required itemname="E-mail" value="<?=$member['mb_email']?>">
<p>받는 메일주소 : <input type="text" id="mail" name="mail" size=40 required itemid="E-mail" name="E-mail" value="<?=$member['mb_email']?>">
<input type=submit value=" 발 송 " class=btn1>
</form>

View File

@ -22,7 +22,7 @@ echo '</b>';
<table width=100% border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td>
<textarea name="textarea" style='width:100%; line-height:150%; padding:10px;' rows="25" class=tx readonly><?=implode("", file($g4['path'].'/HISTORY'));?></textarea>
<textarea id="textarea" name="textarea" style='width:100%; line-height:150%; padding:10px;' rows="25" class=tx readonly><?=implode("", file($g4['path'].'/HISTORY'));?></textarea>
</td>
</tr>
</table>

View File

@ -10,13 +10,13 @@ $qstr = 'fr_date='.$fr_date.'&amp;to_date='.$to_date;
?>
<table width=100% cellpadding=3 cellspacing=1>
<form name=fvisit method=get>
<form id="fvisit" name="fvisit" method=get>
<tr>
<td>
기간 :
<input type='text' name='fr_date' size=11 maxlength=10 value='<?=$fr_date?>'>
<input type="text" id="fr_date" name="fr_date" size=11 maxlength=10 value='<?=$fr_date?>'>
-
<input type='text' name='to_date' size=11 maxlength=10 value='<?=$to_date?>'>
<input type="text" id="to_date" name="to_date" size=11 maxlength=10 value='<?=$to_date?>'>
&nbsp;
<input type=button class=btn1 value=' 접속자 ' onclick="fvisit_submit('visit_list.php');">
<input type=button class=btn1 value=' 도메인 ' onclick="fvisit_submit('visit_domain.php');">

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 5;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=200>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 4;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=100>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 5;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=200>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 4;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=100>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 5;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=350>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 4;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=100>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 5;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=200>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 4;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=100>
<colgroup width=100>

View File

@ -11,7 +11,7 @@ include_once('./visit.sub.php');
$colspan = 4;
?>
<table width=100% cellpadding=0 cellspacing=1 border=0>
<table>
<colgroup width=100>
<colgroup width=100>
<colgroup width=100>