회원가입 notice 오류 해결 및 캡챠 iframe 처리

This commit is contained in:
gnuboard
2013-01-08 17:04:15 +09:00
parent 17a2f4b24b
commit 751a38a2ab
13 changed files with 196 additions and 293 deletions

View File

@ -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);
?>