69 lines
1.7 KiB
PHP
69 lines
1.7 KiB
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
|
|
$maestro_id = $_POST["maestro_id"];
|
|
/*
|
|
if(!is_numeric($enterCode)) {
|
|
send_error_code('생년월일이 숫자가 아닙니다. : '.$enterCode);
|
|
exit;
|
|
} else if(strlen($enterCode) != 6) {
|
|
send_error_code('6자리 숫자값을 정확히 입력하세요 : YYMMDD (예 : 120131) : '.$enterCode);
|
|
exit;
|
|
}
|
|
*/
|
|
|
|
include "./../setup/connect_db.php";
|
|
|
|
$maestro_test_player_id = get_maestro_test_player_id($maestro_id);
|
|
if($maestro_test_player_id === null) {
|
|
$replyJSON["ERROR"] = "등록된 마에스트로 테스트 계정이 없습니다";
|
|
echo json_encode($replyJSON, JSON_UNESCAPED_UNICODE);
|
|
$db_conn->close();
|
|
exit;
|
|
}
|
|
|
|
$maestro_test_player_name = get_maestro_test_player_name($maestro_test_player_id);
|
|
|
|
$replyJSON["PlayerID"] = $maestro_test_player_id;
|
|
$replyJSON["PlayerName"] = $maestro_test_player_name;
|
|
$replyJSON["RESULT"] = "ok";
|
|
echo json_encode($replyJSON, JSON_UNESCAPED_UNICODE);
|
|
$db_conn->close();
|
|
exit;
|
|
|
|
|
|
function get_maestro_test_player_id($maestro_id) {
|
|
global $db_conn;
|
|
|
|
$query = "SELECT MaestroTestID FROM moty_maestro WHERE MaestroID=?";
|
|
$stmt = $db_conn->prepare($query);
|
|
$stmt->bind_param('i', $maestro_id);
|
|
$stmt->execute();
|
|
$stmt->bind_result($maestro_test_player_id);
|
|
// while($stmt->fetch()) {
|
|
// ;
|
|
// }
|
|
$stmt->fetch();
|
|
$stmt->close();
|
|
|
|
return $maestro_test_player_id;
|
|
}
|
|
|
|
function get_maestro_test_player_name($player_id) {
|
|
global $db_conn;
|
|
|
|
$query = "SELECT Name FROM moty_player WHERE PlayerID=?";
|
|
$stmt = $db_conn->prepare($query);
|
|
$stmt->bind_param('i', $player_id);
|
|
$stmt->execute();
|
|
$stmt->bind_result($maestro_test_player_name);
|
|
// while($stmt->fetch()) {
|
|
// ;
|
|
// }
|
|
$stmt->fetch();
|
|
$stmt->close();
|
|
|
|
return $maestro_test_player_name;
|
|
}
|
|
|
|
?>
|