~~NOCACHE~~ $cur_year=date("Y"); $cur_month=date("n"); echo "\n\n^ Month ^ Accesses and Top 10 Pages ^\n"; for ($i=0; $i<12; $i++) { $year=$cur_year; $month=$cur_month-$i; if ($month <=0) { $month=$month+12; $year=$cur_year-1; } $cfile=$month."_".$year; $cdir="data/meta/quickstats/".$cfile; if (is_dir($cdir)) { $dateobj=DateTime::createFromFormat('!m',$month); $monthn=$dateobj->format('F'); echo "| ".$monthn." ".$year." | ~~QUICKSTATS:".$cfile."&pages;;10~~ |\n"; } }