session_start();
$nologout1 = $_GET['nologout'];
$nologout2 = $_SESSION['nologout'];
$nologout = 0;
if (isset($nologout1)) {
$nologout = $nologout1;
$_SESSION['nologout'] = $nologout;
}
else if (isset($nologout2)) {
$nologout = $nologout2;
}
$userid1 = $_GET['userid'];
$userid2 = $_SESSION['userid'];
$userid = '';
if (isset($userid1)) {
$userid = $userid1;
$userid = trim($userid);
$_SESSION['userid'] = $userid;
}
else if (isset($userid2)) {
$userid = $userid2;
$userid = trim($userid);
}
?>
include "_header.html"; ?>
require_once("DBUSER.php");
if (!strlen($userid)) {
echo "";
exit;
}
$rs = DBUSER::game_list($userid, $errstr);
DBGOUT("[errstr] ".$errstr);
if ($errstr != "@error.no") {
// exit;
}
?>
게임 스코어
- 아래 표를 눌러주면 하단에서 상세 기록을 볼 수 있습니다.
gameid |
날짜 |
CC |
순위 |
스코어 |
W1최대(m) |
W1평균(m) |
페어웨이안착률(%) |
그린적중률(%) |
총 퍼팅수 |
평균 퍼팅수 |
홀 |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
스코어 |
순위 |
include "_footer.html"; ?>