$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();
?>