SNS 카카오가입시 전화번호 값 저장 형님들 도와주십시오오오오오오
본문
안녕하세요 ㅠㅠ 이 문제로 며칠째 눈알이 뽑힐거 같아요
네이버는 이제 전화번호값이 넘어 오는데 카카오가 잘 안되네요
일단 아래의 링크를 참조하여 따라 했습니다
https://sir.kr/g5_tip/20446?page=0&sfl=wr_subject&stx=%EC%B9%B4%EC%B9%B4%EC%98%A4
가입페이지에서 전화번호 값은 들어오는데 가입완료후 전화번호가 데이터베이스에 저장이 안되는거 같습니다
도대체 뭐가 문제일까요?
눈물이 날거 같습니다 돈만 많으면 개발자 형님들 모셔서 작업하고 싶은데 지금 당장 손가락 빨게 생겨서 마지막이다 생각하고 홈페이지를 다시 만들어 쇼핑몰을 만들어 보려고 합니다 ㅠㅠ
도와 주시면 은혜 잊지 않겠습니다..
<span>휴대전화번호</span>
<?php
// 국가 번호 제거
if (isset($user_phone_number) && $user_phone_number !== '') {
$user_phone_number = preg_replace('/^\+82\s*0?/', '0', $user_phone_number);
}
?>
<input type="hidden" name="mb_hp" value="<?php echo $member['mb_hp'] ?>">
<input type="text" name="mb_hp" value="<?php echo (isset($user_phone_number) && $user_phone_number !== '') ? $user_phone_number : (isset($user_mobile) ? $user_mobile : ''); ?>" id="reg_mb_hp" required <?php echo (isset($user_mobile) && $user_mobile != '' && !$is_exists_hp)? "readonly":''; ?> class="input hp full_input required" maxlength="100" placeholder="휴대폰번호">
<input type="hidden" name="mb_hp" value="<?php echo isset($user_mobile)?$user_mobile:''; ?>">
<?php if ($config['cf_use_hp_certify']) { ?>
<?php } ?>
답변을 작성하시기 전에 로그인 해주세요.