/****************************************************** ' System :Eco-footprint 管理ページ ' Content:News!!登録 '******************************************************/ $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"); set_global('member', '会員トップページ設定', 'News!!', BACK_TOP); if (!$next_action) { $sql = "SELECT MAX(ns_end_date) AS max_date from t_news"; $result = db_exec($sql); if (pg_numrows($result) == 0) system_error('メッセージIDが不正', __FILE__); $fetch = pg_fetch_object($result, 0); $max_date = $fetch->max_date; if ($max_date) { $max_date = mktime (0,0,0,get_datepart('M',$max_date),(get_datepart('D',$max_date) + 1),get_datepart('Y',$max_date)); $start_date = strftime ("%Y-%m-%d", $max_date); $end_date = $start_date; } else $start_date = date("Y-m-d"); $end_date = $start_date; } else { $start_date = "$start_y-$start_m-$start_d"; $end_date = "$end_y-$end_m-$end_d"; } ?>