[g5] 일본휴대폰 검사하기.
페이지 정보
본문
lib/register.lib.php
function exist_mb_hp($reg_mb_hp, $reg_mb_id)
{
global $g5;
if (!trim($reg_mb_hp)) return "";
$reg_mb_hp = hyphen_hp_number($reg_mb_hp);
$sql = "select count(*) as cnt from {$g5['member_table']} where mb_hp = '$reg_mb_hp' and mb_id <> '$reg_mb_id' ";
$row = sql_fetch($sql);
if($row['cnt'])
return " 既に使用中の携帯電話番号です。 ".$reg_mb_hp;
else
return "";
}
추천0
댓글목록
등록된 댓글이 없습니다.