최초 커밋
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
//if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
include_once("../../../common.php");
|
||||
|
||||
extract($_REQUEST);
|
||||
|
||||
//아이디 중복체크
|
||||
if( $ActionKind =="dupl_check" && isset($reg_mb_id) ){
|
||||
$sql = "select count(*) cnt from g5_member where mb_id = TRIM('$reg_mb_id')";
|
||||
$mb = sql_fetch($sql);
|
||||
|
||||
echo $mb["cnt"];
|
||||
exit();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user