회원가입 notice 오류 해결 및 캡챠 iframe 처리
This commit is contained in:
@ -1,5 +1,11 @@
|
||||
<?
|
||||
include_once("_common.php");
|
||||
include_once($g4['path'].'/lib/register.lib.php');
|
||||
|
||||
echo check_mb_email($_POST['reg_mb_id'], $_POST['reg_mb_email']);
|
||||
$mb_email = escape_trim($_POST['reg_mb_email']);
|
||||
$mb_id = escape_trim($_POST['reg_mb_id']);
|
||||
|
||||
if ($msg = empty_mb_email($mb_email)) die($msg);
|
||||
if ($msg = valid_mb_email($mb_email)) die($msg);
|
||||
if ($msg = exist_mb_email($mb_email, $mb_id)) die($msg);
|
||||
?>
|
||||
Reference in New Issue
Block a user