14 lines
399 B
PHP
14 lines
399 B
PHP
<?php
|
|
include_once('./_common.php');
|
|
|
|
if (isset($_SESSION['ss_mb_reg']))
|
|
$mb = get_member($_SESSION['ss_mb_reg']);
|
|
|
|
// 회원정보가 없다면 초기 페이지로 이동
|
|
if (!(isset($mb['mb_id']) && $mb['mb_id']))
|
|
goto_url(G5_URL);
|
|
|
|
$g5['title'] = '회원가입 완료';
|
|
include_once('./_head.php');
|
|
include_once($member_skin_path.'/register_result.skin.php');
|
|
include_once('./_tail.php'); |