g4s 13-04-26일자 코드 반영
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
<?
|
||||
<?php
|
||||
$sub_menu = "200300";
|
||||
include_once('./_common.php');
|
||||
|
||||
@ -42,28 +42,28 @@ include_once('./admin.head.php');
|
||||
<section class="cbox">
|
||||
<h2>메일발송대상 선택</h2>
|
||||
<p>
|
||||
전체회원 <?=number_format($tot_cnt)?>명 , 탈퇴대기회원 <?=number_format($finish_cnt)?>명, 정상회원 <?=number_format($tot_cnt - $finish_cnt)?>명 중 메일 발송 대상 선택
|
||||
전체회원 <?php echo number_format($tot_cnt) ?>명 , 탈퇴대기회원 <?php echo number_format($finish_cnt) ?>명, 정상회원 <?php echo number_format($tot_cnt - $finish_cnt) ?>명 중 메일 발송 대상 선택
|
||||
</p>
|
||||
|
||||
<form name="frmsendmailselectform" id="frmsendmailselectform" action="./mail_select_list.php" method="post" autocomplete="off">
|
||||
<input type="hidden" name="ma_id" value='<?=$ma_id?>'>
|
||||
<input type="hidden" name="ma_id" value='<?php echo $ma_id ?>'>
|
||||
|
||||
<table class="frm_tbl">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">회원 ID</th>
|
||||
<td>
|
||||
<input type="radio" name="mb_id1" value="1" id="mb_id1_all" <?=$mb_id1?"checked":"";?>> <label for="mb_id1_all">전체</label>
|
||||
<input type="radio" name="mb_id1" value="0" id="mb_id1_section" <?=!$mb_id1?"checked":"";?>> <label for="mb_id1_section">구간</label>
|
||||
<input type="text" name="mb_id1_from" value="<?=$mb_id1_from?>" id="mb_id1_from" title="시작구간" class="frm_input"> 에서
|
||||
<input type="text" name="mb_id1_to" value="<?=$mb_id1_to?>" id="mb_id1_to" title="종료구간" class="frm_input"> 까지
|
||||
<input type="radio" name="mb_id1" value="1" id="mb_id1_all" <?php echo $mb_id1?"checked":""; ?>> <label for="mb_id1_all">전체</label>
|
||||
<input type="radio" name="mb_id1" value="0" id="mb_id1_section" <?php echo !$mb_id1?"checked":""; ?>> <label for="mb_id1_section">구간</label>
|
||||
<input type="text" name="mb_id1_from" value="<?php echo $mb_id1_from ?>" id="mb_id1_from" title="시작구간" class="frm_input"> 에서
|
||||
<input type="text" name="mb_id1_to" value="<?php echo $mb_id1_to ?>" id="mb_id1_to" title="종료구간" class="frm_input"> 까지
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="mb_email">E-mail</label></th>
|
||||
<td>
|
||||
<?=help("메일 주소에 단어 포함 (예 : @sir.co.kr)")?>
|
||||
<input type="text" name="mb_email" value="<?=$mb_email?>" id="mb_email" class="frm_input" size="50">
|
||||
<?php echo help("메일 주소에 단어 포함 (예 : @sir.co.kr)") ?>
|
||||
<input type="text" name="mb_email" value="<?php echo $mb_email ?>" id="mb_email" class="frm_input" size="50">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -79,14 +79,14 @@ include_once('./admin.head.php');
|
||||
<th scope="row"><label for="mb_level_from">권한</label></th>
|
||||
<td>
|
||||
<select name="mb_level_from" id="mb_level_from" title="최소권한">
|
||||
<? for ($i=1; $i<=10; $i++) { ?>
|
||||
<option value="<? echo $i ?>"><? echo $i ?></option>
|
||||
<? } ?>
|
||||
<?php for ($i=1; $i<=10; $i++) { ?>
|
||||
<option value="<?php echo $i ?>"><?php echo $i ?></option>
|
||||
<?php } ?>
|
||||
</select> 에서
|
||||
<select name="mb_level_to" id="mb_level_to" title="최대권한">
|
||||
<? for ($i=1; $i<=10; $i++) { ?>
|
||||
<option value="<? echo $i ?>"><? echo $i ?></option>
|
||||
<? } ?>
|
||||
<?php for ($i=1; $i<=10; $i++) { ?>
|
||||
<option value="<?php echo $i ?>"><?php echo $i ?></option>
|
||||
<?php } ?>
|
||||
</select> 까지
|
||||
</td>
|
||||
</tr>
|
||||
@ -95,7 +95,7 @@ include_once('./admin.head.php');
|
||||
<td>
|
||||
<select id="gr_id" name="gr_id">
|
||||
<option value=''>전체</option>
|
||||
<?
|
||||
<?php
|
||||
$sql = " select gr_id, gr_subject from {$g4['group_table']} order by gr_subject ";
|
||||
$result = sql_query($sql);
|
||||
for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
@ -119,6 +119,6 @@ include_once('./admin.head.php');
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<?
|
||||
<?php
|
||||
include_once('./admin.tail.php');
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user