/****************************************************** ' System :Eco-footprint 会員ページ ' Content:会員情報変更5 '******************************************************/ $top = '.'; $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/database.php"); include("$inc/select.php"); include("$inc/decode.php"); $inc = "$top/inc"; include("$inc/regist2.php"); //その他表示 function disp_etc($str) { if ($str) echo "( " . htmlspecialchars($str) . " )"; } // ヘーベルハウス function decode_hebel($code) { if ($code) echo "はい"; else echo "いいえ"; } // あり/なし表示 function decode_yesno($code) { if ($code == 1) echo "あり"; else echo "なし"; } // 配偶者表示 function disp_parent($code) { if ($code == '1') echo "妻"; elseif ($code == '2') echo "夫"; } // セッション処理 session_start(); if (!isset($_SESSION['ss_regist2'])) redirect('member_change01.php'); $reg = &$_SESSION['ss_regist2']; $reg->back_page = "member_change05.php"; ?>