/****************************************************** ' System :Eco-footprint 管理ページ ' Content:Ecoゾウさんからのお知らせ登録変更画面 '******************************************************/ $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"); // 有効/無効選択肢 function select_tm_status($sel) { echo ""; echo ""; } //表示check function tm_checked($data) { if ($data) { if ($data == 't') { print "checked"; } } } // メイン処理 set_global('etc', 'その他管理', 'Ecoゾウさんからのお知らせ', BACK_TOP); if (!$next_action) { $sql = "SELECT * FROM t_top_msg WHERE tm_seq_no=$tm_no"; $result = db_exec($sql); if (pg_numrows($result) == 0) system_error('メッセージNo.が不正', __FILE__); $fetch = pg_fetch_object($result, 0); $tm_status = $fetch->tm_status; $start_date = $fetch->tm_start_date; $end_date = $fetch->tm_end_date; $tm_title = $fetch->tm_title; $tm_message = $fetch->tm_message; } else { $start_date = "$start_year-$start_month-$start_day"; $end_date = "$end_year-$end_month-$end_day"; } ?>