#************************************************************************* # TOP画面 #************************************************************************* header("Cache-control: private"); session_start(); #=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--= # 外部ファイル取得 #=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--= require_once("../php_conf_cv/share.php"); unset($_SESSION[$ses]["user"]); $this_time = strtotime(date('YmdHis')); $opening_time = strtotime($opening_day); $closing_time = strtotime($closing_day); #【If】登録終了の場合 if ($end_reg == 1) { #========================================================================== # ヘッダ表示 #========================================================================== include(HEAD); echo "
申込期間:" . substr($opening_day, 0, -3) . " ~ " . substr($closing_day, 0, -3) . "
\n"; echo "締切りました
\n"; #========================================================================== # フッタ表示 #========================================================================== include(FOOT); } elseif ($this_time <= $opening_time) { #========================================================================== # ヘッダ表示 #========================================================================== include(HEAD); echo "申込期間:" . substr($opening_day, 0, -3) . " ~ " . substr($closing_day, 0, -3) . "
\n"; echo "申込期間前です
\n"; #========================================================================== # フッタ表示 #========================================================================== include(FOOT); } else { $reg_id = NULL; $_SESSION[$ses]["user"]["mode"] = MODE_REGISTRY; include("./common_inp.inc"); } ?>