AvocadoAmber/AvocadoEdition_Light/bbs/register_result.php

15 lines
389 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:07:19 +09:00
include_once "./_common.php";
2022-09-17 20:50:50 +09:00
if (isset($_SESSION['ss_mb_reg']))
2024-09-19 20:57:39 +09:00
$mb = get_member($_SESSION['ss_mb_reg']);
2022-09-17 20:50:50 +09:00
// 회원정보가 없다면 초기 페이지로 이동
if (!$mb['mb_id'])
2024-09-19 20:57:39 +09:00
goto_url(G5_URL);
2022-09-17 20:50:50 +09:00
$g5['title'] = '회원가입이 완료되었습니다.';
2024-09-23 11:07:19 +09:00
include_once "./_head.php";
2024-09-19 20:57:39 +09:00
include_once($member_skin_path . '/register_result.skin.php');
2024-09-23 11:07:19 +09:00
include_once "./_tail.php";