Esempio n. 1
0
function get_wizard_selectoptions($v)
{
    global $langDefs;
    $r = "<option value=\"\"" . get_selected($v, "") . ">[Choose...]</option>";
    $keys = array_keys($langDefs);
    foreach ($keys as $item) {
        $r .= "<option value=\"" . $item . "\"" . get_selected($v, $item) . ">" . $item . "</option>";
    }
    return $r;
}
Esempio n. 2
0
        <td>
            <select name="cp_trunc" id="cp_trunc">
            <option value="1"<?php 
echo get_selected('1', $cp['cp_trunc']);
?>
>1원단위</option>
            <option value="10"<?php 
echo get_selected('10', $cp['cp_trunc']);
?>
>10원단위</option>
            <option value="100"<?php 
echo get_selected('100', $cp['cp_trunc']);
?>
>100원단위</option>
            <option value="1000"<?php 
echo get_selected('1000', $cp['cp_trunc']);
?>
>1,000원단위</option>
           </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="cp_minimum">최소주문금액</label></th>
        <td>
            <input type="text" name="cp_minimum" value="<?php 
echo stripslashes($cp['cp_minimum']);
?>
" id="cp_minimum" class="frm_input"> 원
        </td>
    </tr>
    <tr id="tr_cp_maximum">
Esempio n. 3
0
			</select>
		</td>
	</tr>
	<tr>
		<td align="center">정렬설정</td>
		<td>
			<select name="wset[sort]">
				<?php 
echo apms_rank_options($wset['sort']);
?>
			</select>
			&nbsp;
			랭크표시
			<select name="wset[rank]">
				<option value=""<?php 
echo get_selected('', $wset['rank']);
?>
>표시안함</option>
				<?php 
echo apms_color_options($wset['rank']);
?>
			</select>
		</td>
	</tr>
	<tr>
		<td align="center">기간설정</td>
		<td>
			<select name="wset[term]">
				<?php 
echo apms_term_options($wset['term']);
?>
Esempio n. 4
0
    <?php 
if ($is_admin == 'super') {
    ?>
<!-- <a href="javascript:point_clear();">포인트정리</a> --><?php 
}
?>
</div>

<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
<select name="sfl" title="검색대상">
    <option value="mb_id"<?php 
echo get_selected($_GET['sfl'], "mb_id");
?>
>회원아이디</option>
    <option value="po_content"<?php 
echo get_selected($_GET['sfl'], "po_content");
?>
>내용</option>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?php 
echo $stx;
?>
" id="stx" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">
</form>

<form name="fpointlist" id="fpointlist" method="post" action="./point_list_delete.php" onsubmit="return fpointlist_submit(this);">
<input type="hidden" name="sst" value="<?php 
echo $sst;
?>
Esempio n. 5
0
        <th scope="row"><label for="nw_device">접속기기</label></th>
        <td>
            <?php 
echo help("팝업레이어가 표시될 접속기기를 설정합니다.");
?>
            <select name="nw_device" id="nw_device">
                <option value="both"<?php 
echo get_selected($nw['nw_device'], 'both', true);
?>
>PC와 모바일</option>
                <option value="pc"<?php 
echo get_selected($nw['nw_device'], 'pc');
?>
>PC</option>
                <option value="mobile"<?php 
echo get_selected($nw['nw_device'], 'mobile');
?>
>모바일</option>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="nw_disable_hours">시간<strong class="sound_only"> 필수</strong></label></th>
        <td>
            <?php 
echo help("고객이 다시 보지 않음을 선택할 시 몇 시간동안 팝업레이어를 보여주지 않을지 설정합니다.");
?>
            <input type="text" name="nw_disable_hours" value="<?php 
echo $nw['nw_disable_hours'];
?>
" id="nw_disable_hours" required class="frm_input required" size="5"> 시간
Esempio n. 6
0
    </tr>
    <tr>
        <th scope="row"><label for="cf_level">문자전송가능 레벨</label></th>
        <td>
            <?php 
    echo help("문자전송을 허용할 회원레벨을 선택해주세요.");
    ?>
            <select name="cf_level" id="cf_level">
                <?php 
    for ($i = 1; $i <= 10; $i++) {
        ?>
                <option value="<?php 
        echo $i;
        ?>
"<?php 
        echo get_selected($i, $sms5['cf_level']);
        ?>
> <?php 
        echo $i;
        ?>
 </option>
                <?php 
    }
    ?>
            </select>
            레벨 이상
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="cf_point">문자전송 차감 포인트<strong class="sound_only"> 필수</strong></label></th>
        <td>
Esempio n. 7
0
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="cf_sms_type">SMS 전송유형</label></th>
            <td>
                <?php 
echo help("전송유형을 SMS로 선택하시면 최대 80바이트까지 전송하실 수 있으며<br>LMS로 선택하시면 90바이트 이하는 SMS로, 그 이상은 1500바이트까지 LMS로 전송됩니다.<br>요금은 건당 SMS는 16원, LMS는 48원입니다.");
?>
                <select id="cf_sms_type" name="cf_sms_type">
                    <option value="" <?php 
echo get_selected($config['cf_sms_type'], '');
?>
>SMS</option>
                    <option value="LMS" <?php 
echo get_selected($config['cf_sms_type'], 'LMS');
?>
>LMS</option>
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="cf_icode_id">아이코드 회원아이디</label></th>
            <td>
                <?php 
echo help("아이코드에서 사용하시는 회원아이디를 입력합니다.");
?>
                <input type="text" name="cf_icode_id" value="<?php 
echo $config['cf_icode_id'];
?>
" id="cf_icode_id" class="frm_input" size="20">
Esempio n. 8
0
?>
>제목+내용</option>
        <option value="mb_id,1"<?php 
echo get_selected($sfl, 'mb_id,1');
?>
>회원아이디</option>
        <option value="mb_id,0"<?php 
echo get_selected($sfl, 'mb_id,0');
?>
>회원아이디(코)</option>
        <option value="wr_name,1"<?php 
echo get_selected($sfl, 'wr_name,1');
?>
>글쓴이</option>
        <option value="wr_name,0"<?php 
echo get_selected($sfl, 'wr_name,0');
?>
>글쓴이(코)</option>
    </select>
    <input name="stx" value="<?php 
echo stripslashes($stx);
?>
" placeholder="검색어(필수)" required id="stx" class="required frm_input" size="15" maxlength="15">
    <input type="submit" value="검색" class="btn_submit">
    </form>
</fieldset>

<?php 
if ($is_checkbox) {
    ?>
<script>
Esempio n. 9
0
        <caption>SMS 설정</caption>
        <colgroup>
            <col class="grid_4">
            <col>
        </colgroup>
        <tbody>
        <tr>
            <th scope="row"><label for="cf_sms_use">SMS 사용</label></th>
            <td>
                <select id="cf_sms_use" name="cf_sms_use">
                    <option value="" <?php 
echo get_selected($config['cf_sms_use'], '');
?>
>사용안함</option>
                    <option value="icode" <?php 
echo get_selected($config['cf_sms_use'], 'icode');
?>
>아이코드</option>
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="cf_icode_id">아이코드 회원아이디</label></th>
            <td>
                <?php 
echo help("아이코드에서 사용하시는 회원아이디를 입력합니다.");
?>
                <input type="text" name="cf_icode_id" value="<?php 
echo $config['cf_icode_id'];
?>
" id="cf_icode_id" class="frm_input" size="20">
Esempio n. 10
0
?>
>wr_subject desc : 제목 내림차순</option>
                    <option value="wr_name asc, wr_num, wr_reply" <?php 
echo get_selected($board['bo_sort_field'], "wr_name asc, wr_num, wr_reply");
?>
>wr_name asc : 글쓴이 오름차순</option>
                    <option value="wr_name desc, wr_num, wr_reply" <?php 
echo get_selected($board['bo_sort_field'], "wr_name desc, wr_num, wr_reply");
?>
>wr_name desc : 글쓴이 내림차순</option>
                    <option value="ca_name asc, wr_num, wr_reply" <?php 
echo get_selected($board['bo_sort_field'], "ca_name asc, wr_num, wr_reply");
?>
>ca_name asc : 분류명 오름차순</option>
                    <option value="ca_name desc, wr_num, wr_reply" <?php 
echo get_selected($board['bo_sort_field'], "ca_name desc, wr_num, wr_reply");
?>
>ca_name desc : 분류명 내림차순</option>
                </select>
            </td>
            <td class="td_grpset">
                <input type="checkbox" name="chk_grp_sort_field" value="1" id="chk_grp_sort_field">
                <label for="chk_grp_sort_field">그룹적용</label>
                <input type="checkbox" name="chk_all_sort_field" value="1" id="chk_all_sort_field">
                <label for="chk_all_sort_field">전체적용</label>
            </td>
        </tbody>
        </table>
    </div>
</section>
Esempio n. 11
0
?>
</select>

<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
    <option value="it_name" <?php 
echo get_selected($sfl, 'it_name');
?>
>상품명</option>
    <option value="a.it_id" <?php 
echo get_selected($sfl, 'a.it_id');
?>
>상품코드</option>
	<!-- APMS - 2014.07.20 -->
    <option value="a.pt_id" <?php 
echo get_selected($sfl, 'a.pt_id');
?>
>파트너 아이디</option>
	<!-- // -->
</select>

<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?php 
echo $stx;
?>
" id="stx" required class="frm_input required">
<input type="submit" value="검색" class="btn_submit">

</form>

<form name="fitemqalist" method="post" action="./itemqalistupdate.php" onsubmit="return fitemqalist_submit(this);" autocomplete="off">
Esempio n. 12
0
function get_delivery_company($company)
{
    $option = '<option value="">없음</option>' . PHP_EOL;
    $option .= '<option value="자체배송" ' . get_selected($company, '자체배송') . '>자체배송</option>' . PHP_EOL;
    $dlcomp = explode(")", str_replace("(", "", G5_DELIVERY_COMPANY));
    for ($i = 0; $i < count($dlcomp); $i++) {
        if (trim($dlcomp[$i]) == "") {
            continue;
        }
        list($value, $url, $tel) = explode("^", $dlcomp[$i]);
        $option .= '<option value="' . $value . '" ' . get_selected($company, $value) . '>' . $value . '</option>' . PHP_EOL;
    }
    return $option;
}
Esempio n. 13
0
function get_input($id)
{
    $data = get_selected($id);
    $data = get_data_pdf($data);
    return $data;
}
Esempio n. 14
0
> 전체 </option>
        <option value="0"<?php 
echo get_selected('0', $fg_no);
?>
> 미분류 (<?php 
echo number_format($no_count);
?>
) </option>
        <?php 
for ($i = 0; $i < count($group); $i++) {
    ?>
        <option value="<?php 
    echo $group[$i]['fg_no'];
    ?>
"<?php 
    echo get_selected($fg_no, $group[$i]['fg_no']);
    ?>
> <?php 
    echo $group[$i]['fg_name'];
    ?>
 (<?php 
    echo number_format($group[$i]['fg_count']);
    ?>
) </option>
        <?php 
}
?>
    </select>
</form>

<ul class="emo_list" style="list-style: none; margin: 25px 0px; padding: 0;">
Esempio n. 15
0
    echo $i;
    ?>
]" id="gr_device_<?php 
    echo $i;
    ?>
">
                <option value="both"<?php 
    echo get_selected($row['gr_device'], 'both');
    ?>
>모두</option>
                <option value="pc"<?php 
    echo get_selected($row['gr_device'], 'pc');
    ?>
>PC</option>
                <option value="mobile"<?php 
    echo get_selected($row['gr_device'], 'mobile');
    ?>
>모바일</option>
            </select>
        </td>
        <td class="td_mngsmall"><?php 
    echo $s_upd;
    ?>
</td>
    </tr>

    <?php 
}
if ($i == 0) {
    echo '<tr><td colspan="' . $colspan . '" class="empty_table">자료가 없습니다.</td></tr>';
}
Esempio n. 16
0
}
?>
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="ca_mobile_skin_dir">모바일용 스킨명</label></th>
            <td colspan="3">
                <select name="ca_mobile_skin_dir" id="ca_mobile_skin_dir">
                <?php 
$arr = get_skin_dir('shop', G5_MOBILE_PATH . '/' . G5_SKIN_DIR);
for ($i = 0; $i < count($arr); $i++) {
    if ($i == 0) {
        echo "<option value=\"\">선택</option>";
    }
    echo "<option value=\"" . $arr[$i] . "\"" . get_selected($ca['ca_mobile_skin_dir'], $arr[$i]) . ">" . $arr[$i] . "</option>\n";
}
?>
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row">본인확인 체크</th>
            <td>
                <input type="radio" name="ca_cert_use" value="1" id="ca_cert_use_yes" <?php 
if ($ca['ca_cert_use']) {
    echo 'checked="checked"';
}
?>
>
                <label for="ca_cert_use_yes">사용함</label>
Esempio n. 17
0
    for ($i = 0; $i < $len; $i++) {
        $nbsp .= "&nbsp;&nbsp;&nbsp;";
    }
    echo '<option value="' . $row1['ca_id'] . '" ' . get_selected($sel_ca_id, $row1['ca_id']) . '>' . $nbsp . $row1['ca_name'] . '</option>' . PHP_EOL;
}
?>
</select>

<label for="sel_field" class="sound_only">검색대상</label>
<select name="sel_field" id="sel_field">
    <option value="it_name" <?php 
echo get_selected($sel_field, 'it_name');
?>
>상품명</option>
    <option value="it_id" <?php 
echo get_selected($sel_field, 'it_id');
?>
>상품코드</option>
</select>

<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="search" value="<?php 
echo $search;
?>
" required class="frm_input required">
<input type="submit" value="검색" class="btn_submit">

</form>

<div class="local_desc01 local_desc">
    <p>재고수정의 수치를 수정하시면 창고재고의 수치가 변경됩니다.</p>
Esempio n. 18
0
    전체 <?php 
echo number_format($total_count);
?>
 개
</span>
<select name="sfl" title="검색대상">
    <option value="mb_id"<?php 
echo get_selected($_GET['sfl'], "mb_id");
?>
>회원아이디</option>
    <option value="cp_subject"<?php 
echo get_selected($_GET['sfl'], "cp_subject");
?>
>쿠폰이름</option>
    <option value="cp_id"<?php 
echo get_selected($_GET['sfl'], "cp_id");
?>
>쿠폰코드</option>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?php 
echo $stx;
?>
" id="stx" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">
</form>

<div class="btn_add01 btn_add">
    <a href="./couponform.php" id="coupon_add">쿠폰 추가</a>
</div>
Esempio n. 19
0
<div class="local_ov01 local_ov">
    <?php 
echo $listall;
?>
    투표수 <?php 
echo number_format($total_count);
?>
개
</div>

<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
<div class="sch_last">
    <label for="sfl" class="sound_only">검색대상</label>
    <select name="sfl" id="sfl">
        <option value="po_subject"<?php 
echo get_selected($_GET['sfl'], "po_subject");
?>
>제목</option>
    </select>
    <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
    <input type="text" name="stx" value="<?php 
echo $stx;
?>
" id="stx" required class="required frm_input">
    <input type="submit" class="btn_submit" value="검색">
</div>
</form>

<div class="btn_add01 btn_add">
    <a href="./poll_form.php" id="poll_add">투표 추가</a>
</div>
Esempio n. 20
0
    </colgroup>
    <tbody>
    <tr>
        <th scope="row"><label for="fg_no">그룹<strong class="sound_only"> 필수</strong></label></th>
        <td>
            <select name="fg_no" id="fg_no" required class="required">
                <option value="0">미분류</option>
                <?php 
$qry = sql_query("select * from {$g5['sms5_form_group_table']} order by fg_name");
while ($res = sql_fetch_array($qry)) {
    ?>
                <option value="<?php 
    echo $res['fg_no'];
    ?>
"<?php 
    echo get_selected($res['fg_no'], $write['fg_no']);
    ?>
><?php 
    echo $res['fg_name'];
    ?>
</option>
                <?php 
}
?>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="fo_name">제목<strong class="sound_only"> 필수</strong></label></th>
        <td><input type="text" name="fo_name" id="fo_name" required value="<?php 
echo $write['fo_name'];
Esempio n. 21
0
    ?>
>매우만족</option>
            <option value="4" <?php 
    echo get_selected($row['is_score'], "4");
    ?>
>만족</option>
            <option value="3" <?php 
    echo get_selected($row['is_score'], "3");
    ?>
>보통</option>
            <option value="2" <?php 
    echo get_selected($row['is_score'], "2");
    ?>
>불만</option>
            <option value="1" <?php 
    echo get_selected($row['is_score'], "1");
    ?>
>매우불만</option>
            </select>
        </td>
        <td class="td_chk">
            <label for="confirm_<?php 
    echo $i;
    ?>
" class="sound_only">확인</label>
            <input type="checkbox" name="is_confirm[<?php 
    echo $i;
    ?>
]" <?php 
    echo $row['is_confirm'] ? 'checked' : '';
    ?>
Esempio n. 22
0
quickMenu();
echo '&nbsp; | &nbsp;<a href="do_text.php?start=' . $textid . '" target="_top"><img src="icn/book-open-bookmark.png" title="Read" alt="Read" /></a> &nbsp;<a href="do_test.php?text=' . $textid . '" target="_top"><img src="icn/question-balloon.png" title="Test" alt="Test" /></a> &nbsp;<a target="_top" href="edit_texts.php?chg=' . $textid . '"><img src="icn/document--pencil.png" title="Edit Text" alt="Edit Text" /></a>';
echo '</h4><h3>PRINT&nbsp;▶ ' . tohtml($title) . '</h3>';
echo "<p id=\"printoptions\">Terms with <b>status(es)</b><select id=\"status\" onchange=\"{val=document.getElementById('status').options[document.getElementById('status').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&amp;status=' + val;}\">";
echo get_wordstatus_selectoptions($status, true, true, false);
echo "</select> ...<br />will be <b>annotated</b> with ";
echo "<select id=\"ann\" onchange=\"{val=document.getElementById('ann').options[document.getElementById('ann').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&amp;ann=' + val;}\">";
echo "<option value=\"0\"" . get_selected(0, $ann) . ">Nothing</option>";
echo "<option value=\"1\"" . get_selected(1, $ann) . ">Translation</option>";
echo "<option value=\"5\"" . get_selected(5, $ann) . ">Translation &amp; Tags</option>";
echo "<option value=\"2\"" . get_selected(2, $ann) . ">Romanization</option>";
echo "<option value=\"3\"" . get_selected(3, $ann) . ">Romanization &amp; Translation</option>";
echo "<option value=\"7\"" . get_selected(7, $ann) . ">Romanization, Translation &amp; Tags</option>";
echo "</select><select id=\"annplcmnt\" onchange=\"{val=document.getElementById('annplcmnt').options[document.getElementById('annplcmnt').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&amp;annplcmnt=' + val;}\">";
echo "<option value=\"0\"" . get_selected(0, $annplcmnt) . ">behind</option>";
echo "<option value=\"1\"" . get_selected(1, $annplcmnt) . ">in front of</option>";
echo "</select> the term.<br />";
echo "<input type=\"button\" value=\"Print it!\" onclick=\"window.print();\" />  (only the text below the line)</p></div> <!-- noprint -->";
echo "<div id=\"print\"" . ($rtlScript ? ' dir="rtl"' : '') . ">";
echo '<p style="' . ($removeSpaces ? 'word-break:break-all;' : '') . 'font-size:' . $textsize . '%;line-height: 1.35; margin-bottom: 10px; ">' . tohtml($title) . '<br /><br />';
$sql = 'select TiWordCount as Code, TiText, TiOrder, TiIsNotWord, WoID, WoTranslation, WoRomanization from (textitems left join words on (TiTextLC = WoTextLC) and (TiLgID = WoLgID) ' . $whstatus . ') where TiTxID = ' . $textid . ' and (not (TiWordCount > 1 and WoID is null)) order by TiOrder asc, TiWordCount desc';
$saveterm = '';
$savetrans = '';
$saverom = '';
$savetags = '';
$until = 0;
$res = mysql_query($sql);
if ($res == FALSE) {
    die("Invalid Query: {$sql}");
}
while ($record = mysql_fetch_assoc($res)) {
Esempio n. 23
0
?>
>휴대폰번호</option>
    <option value="mb_point"<?php 
echo get_selected($_GET['sfl'], "mb_point");
?>
>포인트</option>
    <option value="mb_datetime"<?php 
echo get_selected($_GET['sfl'], "mb_datetime");
?>
>가입일시</option>
    <option value="mb_ip"<?php 
echo get_selected($_GET['sfl'], "mb_ip");
?>
>IP</option>
    <option value="mb_recommend"<?php 
echo get_selected($_GET['sfl'], "mb_recommend");
?>
>추천인</option>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?php 
echo $stx;
?>
" id="stx" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">

</form>

<div class="local_desc01 local_desc">
    <p>
        회원자료 삭제 시 다른 회원이 기존 회원아이디를 사용하지 못하도록 회원아이디, 이름, 닉네임은 삭제하지 않고 영구 보관합니다.
Esempio n. 24
0
    echo get_selected('00', $pt_eminute);
    ?>
>00분</option>
						<option value="05"<?php 
    echo get_selected('05', $pt_eminute);
    ?>
>05분</option>
						<?php 
    for ($i = 2; $i < 12; $i++) {
        $im = $i * 5;
        ?>
							<option value="<?php 
        echo $im;
        ?>
"<?php 
        echo get_selected($im, $pt_eminute);
        ?>
><?php 
        echo $im;
        ?>
분</option>
						<?php 
    }
    ?>
					</select>
					&nbsp;
					<button type="button" onclick="this.form.pt_end_date.value='';" class="btn_frmline">종료설정해제</button>
				</td>
			</tr>
		<?php 
}
Esempio n. 25
0
            $list[$idx][$i]['subject'] = $subject;
            $list[$idx][$i]['content'] = $content;
            $list[$idx][$i]['name'] = get_sideview($row['mb_id'], get_text(cut_str($row['wr_name'], $config['cf_cut_name'])), $row['wr_email'], $row['wr_homepage']);
            $k++;
            if ($k >= $rows) {
                break;
            }
        }
        sql_free_result($result);
        if ($k >= $rows) {
            break;
        }
        $from_record = 0;
    }
    $write_pages = get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['SCRIPT_NAME'] . '?' . $search_query . '&amp;gr_id=' . $gr_id . '&amp;srows=' . $srows . '&amp;onetable=' . $onetable . '&amp;page=');
}
$group_select = '<label for="gr_id" class="sound_only">게시판 그룹선택</label><select name="gr_id" id="gr_id" class="select"><option value="">전체 분류';
$sql = " select gr_id, gr_subject from {$g5['group_table']} order by gr_id ";
$result = sql_query($sql);
for ($i = 0; $row = sql_fetch_array($result); $i++) {
    $group_select .= "<option value=\"" . $row['gr_id'] . "\"" . get_selected($_GET['gr_id'], $row['gr_id']) . ">" . $row['gr_subject'] . "</option>";
}
$group_select .= '</select>';
if (!$sfl) {
    $sfl = 'wr_subject';
}
if (!$sop) {
    $sop = 'or';
}
include_once $search_skin_path . '/search.skin.php';
include_once './_tail.php';
Esempio n. 26
0
        </td>
        <td class="td_mng">
            <label for="me_mobile_use_<?php 
    echo $i;
    ?>
" class="sound_only">모바일사용</label>
            <select name="me_mobile_use[]" id="me_mobile_use_<?php 
    echo $i;
    ?>
">
                <option value="1"<?php 
    echo get_selected($row['me_mobile_use'], '1', true);
    ?>
>사용함</option>
                <option value="0"<?php 
    echo get_selected($row['me_mobile_use'], '0', true);
    ?>
>사용안함</option>
            </select>
        </td>
        <td>
            <label for="me_icon<?php 
    echo $i;
    ?>
" class="sound_only">아이콘<strong class="sound_only"> 필수</strong></label>
            <input type="text" name="me_icon[]" value="<?php 
    echo $row['me_icon'];
    ?>
" id="me_icon_<?php 
    echo $i;
    ?>
Esempio n. 27
0
        ?>
</option>
                <?php 
    }
    ?>
            </select>
            <label for="wr_bd">일</label><br>
                <select name="wr_bh" id="wr_bh" disabled>
                <?php 
    for ($i = 0; $i < 24; $i++) {
        ?>
                <option value="<?php 
        echo sprintf("%02d", $i);
        ?>
"<?php 
        echo get_selected(date('H') + 1, $i);
        ?>
><?php 
        echo sprintf("%02d", $i);
        ?>
</option>
                <?php 
    }
    ?>
            </select>
            <label for="wr_bh">시</label>
            <select name="wr_bi" id="wr_bi" disabled>
                <?php 
    for ($i = 0; $i <= 59; $i += 5) {
        ?>
                <option value="<?php 
Esempio n. 28
0
?>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="co_tag_filter_use">태그 필터링 사용</label></th>
        <td>
            <?php 
echo help("내용에서 iframe 등의 태그를 사용하려면 사용안함으로 선택해 주십시오.");
?>
            <select name="co_tag_filter_use" id="co_tag_filter_use">
                <option value="1"<?php 
echo get_selected(1, $co['co_tag_filter_use']);
?>
>사용함</option>
                <option value="0"<?php 
echo get_selected(0, $co['co_tag_filter_use']);
?>
>사용안함</option>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="co_include_head">상단 파일 경로</label></th>
        <td>
            <?php 
echo help("설정값이 없으면 기본 상단 파일을 사용합니다.");
?>
            <input type="text" name="co_include_head" value="<?php 
echo $co['co_include_head'];
?>
" id="co_include_head" class="frm_input" size="60">
Esempio n. 29
0
        </td>
        <td class="td_mng">
            <label for="opt_use_<?php 
                    echo $i;
                    ?>
" class="sound_only"></label>
            <select name="opt_use[]" id="opt_use_<?php 
                    echo $i;
                    ?>
">
                <option value="1" <?php 
                    echo get_selected('1', $opt_use);
                    ?>
>사용함</option>
                <option value="0" <?php 
                    echo get_selected('0', $opt_use);
                    ?>
>사용안함</option>
            </select>
        </td>
    </tr>
    <?php 
                    $k++;
                } while ($k < $opt3_count);
                $j++;
            } while ($j < $opt2_count);
        }
        // for
    }
    ?>
    </tbody>
Esempio n. 30
0
" id="ev_mobile_list_mod" required class="required frm_input" size="3"> 개
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="ev_use">사용</label></th>
        <td>
            <?php 
echo help("사용하지 않으면 레이아웃의 이벤트 메뉴 및 이벤트 관련 페이지에 접근할 수 없습니다.");
?>
            <select name="ev_use" id="ev_use">
                <option value="1" <?php 
echo get_selected($ev['ev_use'], 1);
?>
>사용</option>
                <option value="0" <?php 
echo get_selected($ev['ev_use'], 0);
?>
>사용안함</option>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="ev_subject">이벤트제목</label></th>
        <td>
            <input type="text" name="ev_subject" value="<?php 
echo htmlspecialchars2($ev['ev_subject']);
?>
" id="ev_subject" required class="required frm_input"  size="60">
            <input type="checkbox" name="ev_subject_strong" value="1" id="ev_subject_strong" <?php 
if ($ev['ev_subject_strong']) {
    echo 'checked="checked"';