Просмотр файла pages/who.php

Размер файла: 3.36Kb
<?php
#-----------------------------------------------------#
#     **** WAP-MOTORS AutoDetect XHTML/WML ****       #
#-----------------------------------------------------#
#     Original Made by  :  VANTUZ                     #
#               E-mail  :  [email protected]             #
#                 Site  :  http://pizdec.ru           #
#             WAP-Site  :  http://visavi.net          #
#                  ICQ  :  36-44-66                   #
#-----------------------------------------------------#
#   AutoDetect Made by  :  X-ray (Юрий)               #
#               E-mail  :  [email protected]           #
#                 Site  :  http://zugdidi.us          #
#             WAP-Site  :  http://geowap.mobi         #
#-----------------------------------------------------#
#  Вы не имеете право вносить изменения в код скрипта #
#-----------------------------------------------------#
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/maincore.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../themes/$config_themes/index.php";

$text = @file("../local/profil/$log.prof"); 
if ($text!=""){
$udata = explode(":||:",$text[0]);
$provlog=trim($udata[0]);
$provpar=trim($udata[1]);
$privat=trim($udata[10]);}	
echo'<img src="../images/img/motors.gif" alt=""> Кто-где<br><br>';


$file = @file("../local/who.dat");
$file = array_reverse($file);
$total = count($file);    
if (empty($_GET['start'])) $start = 0;
else $start = $_GET['start'];
if ($total < $start + $config_showuser){ $end = $total; }
else {$end = $start + $config_showuser; }
for ($i = $start; $i < $end; $i++){
	
$data = explode("|",$file[$i]);	
$cur=time();
$cu=$cur-$data[3];
$cu=round($cu/60);
if($cu<10){$cu='<font color="red">Oнлайн</font>';}
if($cu>=10 && $cu<60){$cu="$cu мин. назад";}
if($cu>=60 && $cu<1440){$cu=round($cu/60); $cu="$cu час. назад";}
if($cu>=1440){$cu=round($cu/60/24); $cu="$cu дн. назад";}


if(!eregi("[^a-z0-9-]",$data[0])){
echo '<img src="../images/img/chel.gif" alt=""> <a href="../pages/anketa.php?uz='.$data[0].'&amp;'.$detect_wap.''.SID.'">'.$data[0].'</a> ('.$cu.')<br>Где: '; 

if($data[1]=="/download/down.php"){$data[1]="/download/index.php";}
if($data[1]=="/board/add.php"){$data[1]="/board";}
if($data[1]=="/addpriv.php"){$data[1]="/priv.php";}
if($data[1]=="/news/komm.php"){$data[1]="/news";}
if($data[1]=="/votes/vote.php"){$data[1]="/votes";}


echo'<a href="'.$data[1].'?'.$detect_wap.''.SID.'">';
if(!str_mess($data[1])==""){echo str_mess($data[1]);}else{echo'На главной';} 
echo'</a><br>Переходов: '.$data[2].'<hr>'; 
}}
    
if ($start != 0) {echo '<a href="who.php?start='.($start - $config_showuser).'&amp;'.$detect_wap.''.SID.'">Назад |</a> ';}
if ($total > $start + $config_showuser) {echo ' <a href="who.php?start='.($start + $config_showuser).'&amp;'.$detect_wap.''.SID.'">| Далее</a>';}

echo'<br><a href="../index.php?'.$detect_wap.''.SID.'">На главную</a>';
include_once"../themes/$config_themes/foot.php";
?>