묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.08.19 19:37
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
create table $member_table (
no int(20) not null auto_increment primary key ,
group_no int(20) not null,
user_id char(20) not null ,
password char(41) not null,
board_name char(255) null default '',
name char(20) not null,
level int(2) not null default 10,
email char(255),
homepage char(255),
icq char(20),
aol char(20),
msn char(20),
jumin char(18),
comment text,
point1 int(20) default 0,
point2 int(20) default 0,
job char(50),
hobby char(50),
home_address char(255),
home_tel char(20),
office_address char(255),
office_tel char(20),
handphone char(20),
mailing char(1) default 0,
birth int(13),
picture char(255),
reg_date int(13),
openinfo char(1) default 1,
is_admin char(1) default 3,
new_memo char(1) default 0,
open_email char(1) default 1,
open_homepage char(1) default 1,
open_icq char(1) default 1,
open_aol char(1) default 1,
open_msn char(1) default 1,
open_comment char(1) default 1,
open_job char(1) default 1,
open_hobby char(1) default 1,
open_home_address char(1) default 1,
open_home_tel char(1) default 1,
open_office_address char(1) default 1,
open_office_tel char(1) default 1,
open_handphone char(1) default 1,
open_birth char(1) default 1,
open_picture char(1) default 1,
KEY group_no (group_no),
KEY user_id (user_id),
KEY password (password),
KEY name (name)
)