Gazelle/sections/tools/services/get_cc.php

17 lines
382 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
if(isset($_SERVER['http_if_modified_since'])) {
header("Status: 304 Not Modified");
die();
}
header('Expires: '.date('D, d-M-Y H:i:s \U\T\C',time()+3600*24*120)); //120 days
header('Last-Modified: '.date('D, d-M-Y H:i:s \U\T\C',time()));
if(!check_perms('users_view_ips')) { die('Access denied.'); }
if (empty($_GET['ip'])) {
die("Invalid IP");
}
die(geoip($_GET['ip']));