Просмотр файла statistik.php

Размер файла: 4.3Kb
<?php
///////////////////////////////////////////////////////////////////////////////////////////
/////
/////                        ********* WAP-MOTORS *********
/////
/////                            Made by   :  VANTUZ
/////                              E-mail  :  [email protected]
/////                                Site  :  http://pizdec.ru
/////                            WAP-Site  :  http://visavi.net 
/////                                 ICQ  :  36-44-66
/////
//////////////////////////////////////////////////////////////////////////////////////////////
//      ВЫ НЕ ИМЕЕТЕ ПРАВО ВНОСИТ ИЗМЕНЕНИЯ В КОД СКРИПТА ДЛЯ ДАЛЬНЕЙШЕГО РАСПРОСТРАНЕНИЯ   //
//////////////////////////////////////////////////////////////////////////////////////////////
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
function myErrorHandler ($errno, $errstr, $errfile, $errline) {}
set_error_handler("myErrorHandler"); 
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
//////////////////////////////////////////////////////////////////////////////////////
ini_set('arg_separator.output','&amp;');
session_name("SID");
 session_start();
//////////////////////////////
require"config.php";
require_once"template/regglobals.php";
require_once"template/antiban.php";
if(@file ("themes/$themes.php"))
{include_once"themes/$themes.php";}else{$themes="default"; include_once"themes/$themes.php";} 	
classus2();
echo'<img src="images/profiles.gif" alt="">Статистика сайта<br>'; classus5(); 	
	
$text = @file("local/counter.dat"); 
if ($text!=""){
$udata = explode("#",$text[0]);
$host=trim($udata[1]);
$hitsall=trim($udata[2]);
$hits=trim($udata[3]);
$all=trim($udata[4]);
}

echo'<br>Нас посетило '.$all.' чел.<br>';
echo'Уникальных посетителей '.$hitsall.' чел.<br>';
echo'Сегодня хocтов '.$host.' чел.<br>';
echo'Сегодня хитов '.$hits.' чел.<br>';




$lines=file("local/dataforum/mainforum.dat");
$i=count($lines);
$n="0"; $a1="-1"; $u=$i-1;
$fid="0"; $itogotem="0"; $itogomsg="0";
do {$a1++; $dt=explode("|", $lines[$a1]);
$itogotem=$itogotem+$dt[4];$itogomsg=$itogomsg+$dt[5];
} while($a1 < $u);

$f = @file("local/local.dat"); 
$u = explode("|",$f[0]);

echo'Сделано записей в гостевой: '.$u[0].'<br>';
echo'Сделано записей в форуме: '.$itogomsg.'<br>';
echo'Создано тем в форуме: '.$itogotem.'<br>';
echo'Сделано записей в чате: '.$u[1].'<br>';
echo'Всего новостей: '.$u[4].'<br>';
echo'Оставленно комментариев: '.$u[3].'<br>';


$ba='ban.dat';
$line=file("$ba");
$it=count($line);
echo'Забаненых: '.$it.'<br>';
 $duuu=opendir("local/profil"); $namba1 = 0; while(($k=readdir($duuu))!==false){ if ($k=='.'||$k=='..'||$k=='.htaccess'||$k=='index.php') continue; $namba1++;} closedir($duuu);
echo'Зарегистрировано пользователей: '.$namba1.'<br>'; 
$tot=$u[0]+$u[1]+$u[2]+$u[3]+$u[4];
echo'Актив сайта: '.$tot.' баллoв(а)';

$bans='local/online.dat';
$lines=file("$bans");
$lines = array_reverse($lines);
  $str = @implode("",@file("local/online.dat"));
   $substr_count = substr_count($str,"##");

$itogo=count($lines);
$reg=$itogo-$substr_count;
classus2();
echo'Сейчас на сайте: '.$itogo.'<br> Зарегистрированных:  '.$reg.'<br>';
classus5();
if($reg=="0"){echo'Зарегистрированных пользователей нет!<br>';}
$fm=0;
do {$dt=explode("#", $lines[$fm]); $fm++;
 $time=date('d.m.y / H:i', $dt[0]);
 $dt[1]=strtok($dt[1],'(');
 $dt[1]=strtok($dt[1],' ');
$dt[1]=str_replace("|"," - ",$dt[1]);
if(!empty($dt[2])){ 
echo 'Время: '.$time.'<br><b><a href="anketa.php?uz='.$dt[2].'">'.$dt[2].'</a></b> ('.$dt[1].')<hr>';}elseif ($list=="full"){echo 'Время: '.$time.'<br><b>'.$guestsuser.'</b> ('.$dt[1].')<hr>';}else{}
} while($itogo>$fm);


echo'<br><a href="statistik.php?list=full">Показать всех</a><br>';
echo'<a href="index.php">На главную</a><br>';
require_once"template/foot.php";

	?>