/****************************************************** ' 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/format.php"); include("$inc/select.php"); include("$inc/list.php"); // お知らせステータス function decode_tm_status($code) { switch ($code) { case 0: return '有効'; case 9: return '無効'; } return '不明'; } //メイン処理 set_global('etc', 'その他管理', 'Ecoゾウさんからのお知らせ', BACK_TOP); if ($del != '1') $where = "WHERE tm_status=0"; // ソート条件 $order_by = order_by(1, 1, 'tm_seq_no', 'tm_title', 'tm_start_date', 'tm_end_date', 'tm_status'); // 表示行数条件 $limit = disp_limit(); $sql = "SELECT * FROM t_top_msg $where $order_by $limit"; $result = db_exec($sql); $nrow = pg_numrows($result); ?>
=$fetch->tm_seq_no?> | =htmlspecialchars($fetch->tm_title)?> | =format_date($fetch->tm_start_date)?> | =format_date($fetch->tm_end_date)?> | =decode_tm_status($fetch->tm_status)?> |