stat.php
379 Bytes
<?php
$modAction = isset($_REQUEST['modAction']) ? $_REQUEST['modAction'] : "stat";
switch($modAction){
case "stat" : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat.php"); break;
case "stat2" : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat2.php"); break;
default : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat.php"); break;
}
?>