> 백엔드 개발 > PHP 튜토리얼 > 检测系统IP地址显示使用人信息

检测系统IP地址显示使用人信息

WBOY
풀어 주다: 2016-06-23 14:06:43
원래의
915명이 탐색했습니다.

<?php require_once('Connections/config.php'); ?><?phpfunction GetIP(){if(!empty($_SERVER["HTTP_CLIENT_IP"]))  $cip = $_SERVER["HTTP_CLIENT_IP"];else if(!empty($_SERVER["HTTP_X_FORWARDED_FOR"]))  $cip = $_SERVER["HTTP_X_FORWARDED_FOR"];else if(!empty($_SERVER["REMOTE_ADDR"]))  $cip = $_SERVER["REMOTE_ADDR"];else  $cip = "无法获取!";return $cip;}?><?phpif (!function_exists("GetSQLValueString")) {function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") {  if (PHP_VERSION < 6) {    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;  }  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);  switch ($theType) {    case "text":      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";      break;        case "long":    case "int":      $theValue = ($theValue != "") ? intval($theValue) : "NULL";      break;    case "double":      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";      break;    case "date":      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";      break;    case "defined":      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;      break;  }  return $theValue;}}$colname_ip_dir = "-1";if (isset($_GET['GetIP()'])) {  $colname_ip_dir = $_GET['GetIP()'];}mysql_select_db($database_config, $config);$query_ip_dir = sprintf("SELECT * FROM ip_manag WHERE address = %s", GetSQLValueString($colname_ip_dir, "text"));$ip_dir = mysql_query($query_ip_dir, $config) or die(mysql_error());$row_ip_dir = mysql_fetch_assoc($ip_dir);$totalRows_ip_dir = mysql_num_rows($ip_dir);?><HTML><HEAD><title>检测操作系统和浏览器类型</title><meta http-equiv="Content-Type" content="text/html; charset=gbk" /></HEAD><body><table width="200" border="1" align="center" cellpadding="0" cellspacing="0">  <tr>    <td>机构部门</td>    <td>IP地址</td>    <td>使用人</td>  </tr>  <tr>    <td><?php echo $row_ip_dir['agency']; ?></td>    <td><?php echo $row_ip_dir['address']; ?></td>    <td><?php echo $row_ip_dir['name']; ?></td>  </tr></table></bady></html><?phpmysql_free_result($ip_dir);?>
로그인 후 복사


不知那里错了,现在不显示信息


回复讨论(解决方案)

你是想获取访问者的ip吗?

是的,获取访问者的IP地址并显示查找数据库,如有IP信息,显示使用人信息,如没有显示未收录。

你可以echo $query_ip_dir ;看看sql是什么。应该是没有那条记录吧。

鉴于 HTTP_CLIENT_IP 和 HTTP_X_FORWARDED_FOR 都是可以伪造的
你的程序并无实际意义

SELECT * FROM ip_manag WHERE address = '-1'

?????

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿