/****************************************************** ' System :Eco-footprint 会員ページ ' Content:ワンポイントアドバイス '******************************************************/ $top = '.'; $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/database.php"); $inc = "$top/inc"; include("$inc/mypage.php"); include("$inc/sim_db.php"); // 決心済みに★を付ける function kesshin($ganbalist_id, $eng_bunrui) { global $ganbarist_ary; if ($ganbarist_ary[$ganbalist_id][$eng_bunrui]) echo '★'; } // ガンバリストを取得 $seq_no = $_SESSION['ss_seq_no']; $ym = date('Ym'); $sql = "SELECT gm_ganbalist_id,gm_eng_bunrui" . " FROM t_ganbalist JOIN m_ganbalist ON gn_ganbalist_id=gm_ganbalist_id AND gn_eng_bunrui=gm_eng_bunrui" . " WHERE gn_seq_no=$seq_no AND gn_ym=$ym"; $result = db_exec($sql); $nrow = pg_numrows($result); for ($i = 0; $i < $nrow; $i++) { $fetch = pg_fetch_object($result, $i); $ganbarist_ary[$fetch->gm_ganbalist_id][$fetch->gm_eng_bunrui] = true; } ?>