[그누보드] 회원가입시 핸드폰번호 입력란 추가하는 방법
페이지 정보
본문
수정할 경로 : /skin/social/social_register_member.skin.php
1. 이메일 입력 부분 하단에 추가를 합니다.
<tr>
<th scope="row"><label for="reg_mb_email">E-mail<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" name="mb_email" value="<?php echo isset($user_email)?$user_email:''; ?>" id="reg_mb_email" required class="frm_input email required" size="70" maxlength="100" placeholder="이메일을 입력해주세요." >
<p class="email_msg"><?php echo $email_msg; ?></p>
</td>
</tr>
<tr>
<th scope="row"><label for="reg_mb_email">E-mail<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" name="mb_email" value="<?php echo isset($user_email)?$user_email:''; ?>" id="reg_mb_email" required class="frm_input email required" size="70" maxlength="100" placeholder="이메일을 입력해주세요." >
<p class="email_msg"><?php echo $email_msg; ?></p>
</td>
</tr>
<tr>
<th scope="row"><label for="reg_mb_hp">휴대폰 번호<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" name="mb_hp" value="" id="reg_mb_hp" required class="frm_input required" size="70" maxlength="20" placeholder="휴대폰 번호" >
</td>
</tr>
2. 이곳에도 추가 수정을 합니다.
수정 경로: /plugin/socail/register_member_update.php
# 28라인
$mb_email = isset($_POST['mb_email']) ? trim($_POST['mb_email']) : '';
$mb_hp = isset($_POST['mb_hp']) ? trim($_POST['mb_hp']) : '';
# 104라인
mb_email = '{$mb_email}',
mb_hp = '{$mb_hp}',
댓글목록
등록된 댓글이 없습니다.