1 Star 3 Fork 2

mojie126 / HDCN-PT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
iphistory.php 2.76 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
require "include/bittorrent.php";
dbconn();
require_once(get_langfile_path());
loggedinorreturn();
if (get_user_class() < $userprofile_class)
permissiondenied();
$userid = 0 + $_GET["id"];
if (!is_valid_id($userid))
stderr($lang_iphistory['std_error'], $lang_iphistory['std_invalid_id']);
$res = sql_query("SELECT username FROM users WHERE id = $userid") or sqlerr(__FILE__, __LINE__);
if (mysql_num_rows($res) == 0)
stderr($lang_iphistory['error'], $lang_iphistory['text_user_not_found']);
$arr = mysql_fetch_array($res);
$username = $arr['username'];
$perpage = 20;
$ipcountres = mysql_fetch_row(sql_query("SELECT COUNT(DISTINCT(access)) FROM iplog WHERE userid = $userid"));
$countrows = $ipcountres[0] + 1;
$order = $_GET['order'];
list($pagertop, $pagerbottom, $limit) = pager($perpage, $countrows, "iphistory.php?id=$userid&order=$order&");
$ress = sql_query("SELECT u.id, u.ip AS ip, last_access AS access FROM users AS u WHERE u.id = $userid UNION DISTINCT SELECT u.id, iplog.ip as ip, iplog.access as access FROM users AS u RIGHT JOIN iplog on u.id = iplog.userid WHERE u.id = $userid ORDER BY access DESC $limit") or sqlerr(__FILE__, __LINE__);
stdhead($lang_iphistory['head_ip_history_log_for'] . $username);
begin_main_frame();
print("<h1 align=\"center\">" . $lang_iphistory['text_historical_ip_by'] . get_username($userid) . "</h1>");
if ($countrows > $perpage)
echo $pagertop;
print("<table width=500 border=1 cellspacing=0 cellpadding=5 align=center>\n");
print("<tr>\n<td class=colhead>" . $lang_iphistory['col_last_access'] . "</td>\n<td class=colhead>" . $lang_iphistory['col_ip'] . "</td>\n<td class=colhead>" . $lang_iphistory['col_hostname'] . "</td>\n</tr>\n");
while ($arr = mysql_fetch_array($ress)) {
$ipshow = "";
list($loc_pub) = get_ip_location($arr['ip']);
if (school_ip_location($arr['ip']) == '') {
$school = "未知";
} else {
$school = school_ip_location($arr['ip']);
}
if ($arr['ip']) {
$ip = $arr['ip'];
$arrip = mysql_fetch_row(sql_query("SELECT COUNT(*) FROM (SELECT u.id FROM users AS u WHERE u.ip = " . sqlesc($ip) . " UNION SELECT u.id FROM users AS u RIGHT JOIN iplog ON u.id = iplog.userid WHERE iplog.ip = " . sqlesc($ip) . " GROUP BY u.id) AS ipsearch")) or sqlerr(__FILE__, __LINE__);
$ipcount = $arrip[0];
if ($ipcount > 1)
$ipshow = "<a href=\"ipsearch.php?ip=" . $arr['ip'] . "\">" . $arr['ip'] . "</a> <b>(<font class='striking'>" . $lang_iphistory['text_duplicate'] . "</font>)</b>";
else
$ipshow = "<a href=\"ipsearch.php?ip=" . $arr['ip'] . "\">" . $arr['ip'] . "</a>";
}
$date = gettime($arr['access']);
print("<tr><td>" . $date . "</td>\n");
print("<td>" . $ipshow . "</td>\n");
print("<td>" . (!ip2long($arr['ip']) ? "$school" : "$loc_pub") . "</td></tr>\n");
}
print("</table>");
echo $pagerbottom;
end_main_frame();
stdfoot();
PHP
1
https://gitee.com/mojie126/HDCN-PT.git
git@gitee.com:mojie126/HDCN-PT.git
mojie126
HDCN-PT
HDCN-PT
master

搜索帮助