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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<?php $sub_menu = "200900"; include_once('./_common.php');
auth_check($auth[$sub_menu], 'w');
$token = get_token();
$html_title = '투표'; if ($w == '') $html_title .= ' 생성'; else if ($w == 'u') { $html_title .= ' 수정'; $sql = " select * from {$g5['poll_table']} where po_id = '{$po_id}' "; $po = sql_fetch($sql); } else alert('w 값이 제대로 넘어오지 않았습니다.');
$g5['title'] = $html_title; include_once('./admin.head.php'); ?>
<form name="fpoll" id="fpoll" action="./poll_form_update.php" method="post" enctype="multipart/form-data"> <input type="hidden" name="po_id" value="<?php echo $po_id ?>"> <input type="hidden" name="w" value="<?php echo $w ?>"> <input type="hidden" name="sfl" value="<?php echo $sfl ?>"> <input type="hidden" name="stx" value="<?php echo $stx ?>"> <input type="hidden" name="sst" value="<?php echo $sst ?>"> <input type="hidden" name="sod" value="<?php echo $sod ?>"> <input type="hidden" name="page" value="<?php echo $page ?>"> <input type="hidden" name="token" value="<?php echo $token ?>">
<div class="tbl_frm01 tbl_wrap">
<table> <caption><?php echo $g5['title']; ?></caption> <tbody> <tr> <th scope="row"><label for="po_subject">투표 제목<strong class="sound_only">필수</strong></label></th> <td><input type="text" name="po_subject" value="<?php echo $po['po_subject'] ?>" id="po_subject" required class="required frm_input" size="80" maxlength="125"></td> </tr>
<?php for ($i=1; $i<=9; $i++) { $required = ''; if ($i==1 || $i==2) { $required = 'required'; $sound_only = '<strong class="sound_only">필수</strong>'; }
$po_poll = get_text($po['po_poll'.$i]); ?>
<tr> <th scope="row"><label for="po_poll<?php echo $i ?>">항목 <?php echo $i ?><?php echo $sound_only ?></label></th> <td> <input type="text" name="po_poll<?php echo $i ?>" value="<?php echo $po_poll ?>" id="po_poll<?php echo $i ?>" <?php echo $required ?> class="frm_input <?php echo $required ?>" maxlength="125"> <label for="po_cnt<?php echo $i ?>">항목 <?php echo $i ?> 투표수</label> <input type="text" name="po_cnt<?php echo $i ?>" value="<?php echo $po['po_cnt'.$i] ?>" id="po_cnt<?php echo $i ?>" class="frm_input" size="3"> </td> </tr>
<?php } ?>
<tr> <th scope="row"><label for="po_etc">기타의견</label></th> <td> <?php echo help('기타 의견을 남길 수 있도록 하려면, 간단한 질문을 입력하세요.') ?> <input type="text" name="po_etc" value="<?php echo get_text($po['po_etc']) ?>" id="po_etc" class="frm_input" size="80" maxlength="125"> </td> </tr> <tr> <th scope="row"><label for="po_level">투표가능 회원레벨</label></th> <td> <?php echo help("레벨을 1로 설정하면 손님도 투표할 수 있습니다.") ?> <?php echo get_member_level_select('po_level', 1, 10, $po['po_level']) ?> 이상 투표할 수 있음 </td> </tr> <tr> <th scope="row"><label for="po_point">포인트</label></th> <td> <?php echo help('투표에 참여한 회원에게 포인트를 부여합니다.') ?> <input type="text" name="po_point" value="<?php echo $po['po_point'] ?>" id="po_point" class="frm_input"> 점 </td> </tr>
<?php if ($w == 'u') { ?> <tr> <th scope="row">투표등록일</th> <td><?php echo $po['po_date']; ?></td> </tr> <tr> <th scope="row"><label for="po_ips">투표참가 IP</label></th> <td><textarea name="po_ips" id="po_ips" readonly rows="10"><?php echo preg_replace("/\n/", " / ", $po['po_ips']) ?></textarea></td> </tr> <tr> <th scope="row"><label for="mb_ids">투표참가 회원</label></th> <td><textarea name="mb_ids" id="mb_ids" readonly rows="10"><?php echo preg_replace("/\n/", " / ", $po['mb_ids']) ?></textarea></td> </tr> <?php } ?> </tbody> </table>
</div>
<div class="btn_confirm01 btn_confirm"> <input type="submit" value="확인" class="btn_submit" accesskey="s"> <a href="./poll_list.php?<?php echo $qstr ?>">목록</a> </div>
</form>
<?php include_once('./admin.tail.php'); ?>
|