Файл: mklik.tk/who1.php
Строк: 60
<?php
error_reporting(0);
session_name('PHP');
session_start();
include 'header/config.inc.php';
include 'header/function.inc.php';
include 'header/header.inc.php';
include 'header/connect.inc.php';
include 'header/click-club.class.php';
include "header/enter.inc.php";
include 'header/hellfish.inc.php';
include 'ban.php';
@mysql_query("update `".prefix."users` set `mesto`='смотрит online', `online`='".time()."' where `id` = '".$_USER['id']."';");
$time = time();
$result=@mysql_query("SELECT * FROM `".prefix."users` WHERE `online` > ($time - 300)");
If (!$result){
echo 'Ошибка запроса к бд...<br/>';
}
$q = mysql_query("select * from `".prefix."users` where `online` > ($time - 300);");
$reg=mysql_num_rows($q);
echo"Пользователей Онлайн: ".$reg."<br/>";
while ($field=mysql_fetch_array($q))
{
echo'<br/>Юзер: <a href="info.php'.$_zapros.'user='.$field['login'].'"><font color="#009900">'.htmlspecialchars(stripslashes(trim($field['login']))).'</font></a>';
echo"<br/>Чем занят: <font color='#990000'>".htmlspecialchars(stripslashes(trim($field['mesto'])))."</font>";
//echo"<br/>UserAgent: <font color='#990000'>".htmlspecialchars(stripslashes(trim($field['ua'])))."</font>";
//echo"<br/>IP- <font color='#ff0000'>".htmlspecialchars(stripslashes(trim($field['ip'])))."</font>";
echo '<div align=center>---</div>';
echo"<br/>";
}
$data="online.dat";
$readdata=@fopen($data,"r") or die("Не могу открыть файл $data");
$data_array=@file($data);
@fclose($readdata);
$online=count($data_array);
echo"Всего онлайн ".$online;
include 'header/end.inc.php';
?>