/******************************************************
' 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 disp_master_mark($ganbalist_id) {
global $master;
if ($master[$ganbalist_id])
echo '';
else
echo '
';
}
// 戻りページセット
$_SESSION['s_one_advice'] = 'one_electron.php';
// エネルギー分類セット
$_SESSION['s_eng_bunrui'] = ENG_DENKI;
// 会員番号取得
$seq_no = $_SESSION['ss_seq_no'];
// マスターマーク取得
$sql = "SELECT mm_ganbalist_id FROM t_master_mark WHERE mm_mb_seq_no=$seq_no";
$result = db_exec($sql);
$nrow = pg_numrows($result);
for ($i = 0; $i < $nrow; $i++) {
$fetch = pg_fetch_object($result, $i);
$master[(int)$fetch->mm_ganbalist_id] = true;
}
?>