Avocado.CommunityEdition/AvocadoEdition/mypage/character/maincharacter_update.php
TATECK 9c60c33cd6 최초 배포
Ver.02.2.2
2022-02-09 03:05:24 +09:00

11 lines
265 B
PHP

<?php
include_once('./_common.php');
if($member['mb_id'] != $_POST['mb_id']) {
alert('잘못된 접근입니다', "./index.php");
}
sql_query("update {$g5['member_table']} set ch_id = '{$ch_id}' where mb_id = '{$member['mb_id']}'");
goto_url('./index.php');
?>