/****************************************************** ' System :Eco-footprint 会員ページ ' Content: '******************************************************/ $top = '.'; $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/define.php"); include("$inc/database.php"); include("$inc/decode.php"); $inc = "$top/inc"; include("$inc/mypage.php"); // ガス使用チェック function check_gas($code) { if ($code == 3) echo "未使用"; else echo "入力する"; } // 灯油使用表示 function decode_ol($code) { if ($code == '') return "未設定"; elseif ($code == 1) return "使用あり"; elseif ($code == 0) return "使用なし"; } // 会員設定情報取得 $sql = "SELECT mb_boiler_cd,mb_gas_kind_cd,mb_gas_type_cd,mb_water_month,mb_gcar_num,mb_dcar_num,mb_bike_num,mb_ol_flag,mb_gm_flag,mb_gl_flag" . " FROM t_member where mb_seq_no=" . $_SESSION['ss_seq_no']; $result = db_exec($sql); if (pg_numrows($result)) $fetch = pg_fetch_object($result, 0); ?>