묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.04.07 16:50
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
script_write.php 이파일 소스중 40~50번째 줄 정도에 아래의 소스가 있습니다.
if(!document.write.memo.value)
{
alert('내용을 입력하여 주세요.');
document.write.memo.focus();
return false;
}
이소스 아래 아래의 내용을 삽입해 주세요..
<? if ($id == "게시판 아이디")
{?>
if(!document.write.file_name1.value)
{
alert('자료를 업로드 해 주세요');
document.write.file_name1.focus();
return false;
}
if(!document.write.file_name2.value)
{
alert('자료를 업로드 해 주세요');
document.write.file_name2.focus();
return false;
}
<?}?>