/****************************************************** ' System :Eco-footprint 会員ページ ' Content:ポイントアニメ表示 '******************************************************/ $top = '.'; $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/database.php"); include("$inc/point.php"); $inc = "$top/inc"; include("$inc/mypage.php"); // 会員番号取得 $seq_no = $_SESSION['ss_seq_no']; // セッションから年月取得 if (!$ym) $ym = $_SESSION['s_anime_ym']; // YYYY-MM-DD形式に変換 $date = sprintf('%s-%s-01', substr($ym, 0, 4), substr($ym, -2)); // 獲得ポイントを取得 $sql = "SELECT cr_point FROM t_co2_rank WHERE cr_seq_no=$seq_no AND cr_ym='$date'"; $result = db_exec($sql); if (pg_numrows($result)) { $fetch = pg_fetch_object($result, 0); $co2_point = $fetch->cr_point; } // ポイント残高取得 $total_point = get_point(); // Flashパラメータ編集 $fv[] = "Point_co2=$co2_point"; $fv[] = "Point_totalco2=$total_point"; $fv = join('&', $fv); ?>