EOM; #------------------------------------------------- # CALENDAR #------------------------------------------------- include_once("calendar.php"); #------------------------------------------------- # NAVI_LIST #------------------------------------------------- include_once("navi.php"); #------------------------------------------------- # PROCESS #------------------------------------------------- $w3a["PROCESS"] = 'Processing time ['.round(getmicrotime()-STIME, 2).' sec]'; #------------------------------------------------- # COPYRIGHT(削除禁止) #------------------------------------------------- $w3a["COPYRIGHT"] = '© w3Analyzer '.$version.' OSAKA PHP 2004-'.date(Y); #------------------------------------------------- # 日付 #------------------------------------------------- $now_d = is_numeric($_GET["d"]) ? "/ ".$_GET["d"] : " [月合計]"; $w3a["DATA_DATE"] = << $now_y / $now_m $now_d EOM; #------------------------------------------------- # アクセス数 #------------------------------------------------- if($data){ $point = set_img("image/act_sel.gif"); $count_d = number_format(count($data)); $count_d_u = number_format(count($data_uniq)); $w3a["DATA_ACCESS"] = <<  $point トータルアクセス数   $point ユニークアクセス数  $count_d $count_d_u
EOM; } #------------------------------------------------- # パス指定 #------------------------------------------------- if($_GET["p_sel"]){ $p_sel_img = set_img(SELPATHMARK,"ページ指定"); $p_sel_now = $_GET["p_sel"]; $p_sel_cansel = ' [指定解除]'; $w3a["OPTION"] .= <<$p_sel_img ページ指定: $p_sel_now $p_sel_cansel
EOM; } #------------------------------------------------- # メイン処理 #------------------------------------------------- //スキン読み込み $html = read_skin($skin_file,$w3a,1); //メイン上部表示 echo $html["up"]; flush(); ob_start(); //メイン表示 if($data){ if($act){ $plugin = $plugindir.$act.'.php'; if(file_exists($plugin)){ //指定ログ用 デコード if($_GET["sel"] != "") $_GET["sel"] = urldecode($_GET["sel"]); //プラグイン読み込み include_once($plugin); }else{ echo '
アクション['.$act."]は実行できませんでした。
"; } }else{ echo '
アクションが指定されていません。
'; } }else{ echo '
ログデータが見つかりません。
'; } //メイン下部表示 echo $html["down"]; ob_end_flush(); ?>