1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?php $sub_menu = '930300'; include_once('./_common.php');
auth_check($auth[$sub_menu], "w");
$html_title = '회원검색';
$g5['title'] = $html_title; include_once(G5_PATH.'/head.sub.php');
$sql_common = " from {$g5['member_table']} "; $sql_where = " where mb_id <> '{$config['cf_admin']}' and mb_leave_date = '' and mb_intercept_date ='' ";
if($_GET['mb_name']) $sql_where .= " and mb_name like '%$mb_name%' ";
// 테이블의 전체 레코드수만 얻음 $sql = " select count(*) as cnt " . $sql_common . $sql_where; $row = sql_fetch($sql); $total_count = $row['cnt'];
$rows = $config['cf_page_rows']; $total_page = ceil($total_count / $rows); // 전체 페이지 계산 if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지) $from_record = ($page - 1) * $rows; // 시작 열을 구함
$sql = " select mb_id, mb_name $sql_common $sql_where order by mb_id limit $from_record, $rows "; $result = sql_query($sql);
$qstr1 = 'mb_name='.$_GET['mb_name']; ?>
<div id="sch_member_frm" class="new_win scp_new_win"> <h1>쿠폰 적용 회원선택</h1>
<form name="fmember" method="get"> <div id="scp_list_find"> <label for="mb_name">회원이름</label> <input type="text" name="mb_name" id="mb_name" value="<?php echo $mb_name; ?>" class="frm_input required" required size="20"> <input type="submit" value="검색" class="btn_frmline"> </div> <div class="tbl_head01 tbl_wrap"> <table> <caption>검색결과</caption> <thead> <tr> <th>회원이름</th> <th>회원아이디</th> <th>선택</th> </tr> </thead> <tbody> <?php for($i=0; $row=sql_fetch_array($result); $i++) { ?> <tr> <td class="td_mbname"><?php echo get_text($row['mb_name']); ?></td> <td><?php echo $row['mb_id']; ?></td> <td class="scp_find_select"><button type="button" class="btn_frmline" onclick="sel_member_id('<?php echo $row['mb_id']; ?>');">선택</button></td> </tr> <?php }
if($i ==0) echo '<tr><td colspan="3" class="empty_table">검색된 자료가 없습니다.</td></tr>'; ?> </tbody> </table> </div> </form>
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, '?'.$qstr1.'&page='); ?>
<div class="btn_confirm01 btn_confirm"> <button type="button" onclick="window.close();">닫기</button> </div> </div>
<script> function sel_member_id(id) { var f = window.opener.document.fcouponform; f.mb_id.value = id;
window.close(); } </script>
<?php include_once(G5_PATH.'/tail.sub.php'); ?>
|