/****************************************************** ' System :Eco-footprint 管理ページ ' Content:会員個人検索 '******************************************************/ $top = '..'; $inc = "$top/inc"; include("$inc/login_check.php"); //include("$inc/header.php"); $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/define.php"); include("$inc/database.php"); //include("$inc/select.php"); include("$inc/decode.php"); include("$inc/format.php"); // 登録状況 function decode_step($code) { if ($code) { switch($code) { case 1: return "仮登録1"; break; case 2: return "仮登録2"; break; case 3: return "本登録"; break; case 9: return "退会"; break; default: return "不明"; break; } } } $sql = "SELECT * FROM t_member LEFT JOIN t_point ON pt_seq_no=mb_seq_no WHERE mb_seq_no=" . sql_number($seq_no); $result = db_exec($sql); if (pg_numrows($result) == 0) system_error('モニターIDが不正', __FILE__); $fetch = pg_fetch_object($result, 0); ?>