묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.10.28 19:51
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
$secret_check=mysql_fetch_array(mysql_query("select count(*) from $t_board"."_$id where no='$data[no]' and password=password('$password')"));
if(!$member[no] && !$secret_check[0]) {
head();
$title="이 글을 수정하시려면<br>비밀번호를 입력하여 주십시요";
$input_password="<input type=password name=password size=20 maxlength=20 class=input>";
include $dir."/ask_password.php";
foot();
exit();
}
}
이렇게 적용해 보세요..