' . "\n"; } // GET値の取得 if (isset($_GET['date'])) { $g_date = explode('-', $_GET['date']); } // カレンダー表示プログラム if (isset($g_date)) { $y = $g_date[0]; $m = $g_date[1]; // 翌月を調べる if ($g_date[1] == 12) { $y_cal = $y + 1; $next_m = $y_cal."-1"; } else { // 翌月を求める $n_m = $m+1; $next_m = $y."-".$n_m; } // 先月を調べる $prev_y = $y; $prev_m = $m - 1; if ($prev_m == 0) { $prev_y_month = $prev_y - 1; $prev_month = $prev_y_month."-12"; } else { $prev_month = $prev_y."-".$prev_m; } // 今月だったら先月は表示しない $cn_date = date('Y')."-".date('n'); if ($_GET['date'] == $cn_date) { $prev_month = null; } } else { $y = date('Y'); $m = date('n'); $n_m = $m+1; $next_m = $y."-".$n_m; $prev_month = null; } $t = mktime(0, 0, 0, $m, 1, $y); // 曜日の取得 $w = date('w', $t); // $y年$n月の日数 $n = date('t', $t); // カレンダーの修了フラグ $c_flag = 0; // auto_login機能 if ($_COOKIE['direx']) { $tmp_c = explode('-', $_COOKIE['direx']); $id = $tmp_c[1]; // SQLの組み立て $sql = "SELECT * FROM member WHERE member_id = '{$id}'"; $_SESSION['MEMBER'] = $conn->GetRow($sql); } ?> @include_once("../w3a/writelog.php");?>