/****************************************************** ' System :Eco-footprint 会員ページ ' Content:我が家の暮らしっぷり再現アニメ表示 '******************************************************/ $top = '.'; $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/database.php"); $inc = "$top/inc"; include("$inc/mypage.php"); // 会員番号取得 $seq_no = $_SESSION['ss_seq_no']; // セッションから年月取得 if (!$ym) $ym = $_SESSION['s_anime_ym']; // 今月のランクを取得 $date = sprintf('%s-%s-01', substr($ym, 0, 4), substr($ym, -2)); $sql = "SELECT cr_rank FROM t_co2_rank WHERE cr_seq_no=$seq_no AND cr_ym='$date'"; $rank = db_fetch1($sql); // 先月のランクを取得 $date = add_date($date, 0, -1, 0); $sql = "SELECT cr_rank FROM t_co2_rank WHERE cr_seq_no=$seq_no AND cr_ym='$date'"; $rank_lm = db_fetch1($sql); // 3段階ランク決定 if (!$rank || !$rank_lm) { // どちらかのランクが無ければ2 $total_rank = 2; } elseif ($rank < $rank_lm) { // 上回れば1 $total_rank = 1; } elseif ($rank > $rank_lm) { // 下回れば3 $total_rank = 3; } else { // 同じなら2 $total_rank = 2; } // 表示月取得 $month = substr($ym, -2); if (++$month == 13) $month = 1; // Flashパラメータ編集 $fv[] = "co2_totalRank=$total_rank"; $fv[] = "thisMonth=$month"; $fv = join('&', $fv); ?>