@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux adweb87 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64
Current Path :
/
home
/
sanchung
/
public_html
/
admin
/
_member
/
Path :
Upload File :
New :
File
Dir
/home/sanchung/public_html/admin/_member/member_cfg.php
<? $row = $mysql->row("adw_member_cfg", "*", ""); echo" <h2>[회원 가입 사용 설정]</h2> <form name='form' action='./_member/proc.php' method='post'> <input type='hidden' name='motion' value='setup' /> <table id='d-table'> <tr> <th height='30'>사용유무</th> <td> <input type='radio' value='1' name='member_join_use' /> 회원가입 받기 <input type='radio' value='2' name='member_join_use' /> 회원가입 일시중지</td> </tr> <tr> <th>일시중지 메세지</th> <td style='padding-top:5px; padding-bottom:5px'><textarea style='width:97%; height:90px' name='member_not_mesg' cols='' rows=''>$row[member_not_mesg]</textarea></td> </tr> </table> <br /> <h2>[회원 가입 환경 설정]</h2> <table id='f-table'> <tr> <th height='30' class='form'>회원 자동 승인</th> <td class='form'><input type='radio' value='1' name='auto_result' /> 자동승인 <input type='radio' value='2' name='auto_result' /> 심사승인 </td> </tr> <tr> <th height='30' class='form'>회원 가입시 등급</th> <td class='form'><select name='join_level'> <option value=''>::회원가입시 초기 등급::</option>"; $_res = $mysql->res("adw_member_level", "*", "order by level asc"); while($_row = mysql_fetch_array($_res)){ echo" <option value='$_row[level]' "; if($_row[level] == $row[join_level]) echo"selected='selected'"; echo">$_row[name]</option>"; } echo" </select> </td> </tr> <tr> <th class='form'>회원가입약관</th> <td class='form' style='padding-top:5px; padding-bottom:5px'><textarea style='width:97%; height:170px' name='member_yak' cols='' rows=''>$row[member_yak]</textarea></td> </tr> <tr> <th class='form'>개인정보취급방침</th> <td class='form' style='padding-top:5px; padding-bottom:5px'><textarea style='width: 97%; height:170px' name='member_guard' cols='' rows=''>$row[member_guard]</textarea></td> </tr> <tr> <th class='form'>등록불가아이디</th> <td class='form' style='padding-top:5px; padding-bottom:5px'><textarea style='width:97%; height:60px' name='member_nouserid' cols='' rows=''>$row[member_nouserid]</textarea><br /> 등록 불가 아이디를 쉼표(,)로 구분해서 입력하세요. 예) sex,test,admin </td> </tr> </table> <p id='bottom-btn'><input type='submit' value=' 확 인 ' /> <input type='submit' value=' 취 소 ' /></p> </form> <script type='text/javascript'> <!-- radiosel('document.form', 'member_join_use', '$row[member_join_use]'); radiosel('document.form', 'auto_result', '$row[auto_result]'); //--> </script> "; ?>