최초 커밋

This commit is contained in:
root
2026-07-23 16:15:57 +09:00
commit c8f5efb6b7
14652 changed files with 4812531 additions and 0 deletions
+20
View File
@@ -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();
}
?>