-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
52 lines (39 loc) · 1.6 KB
/
test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$agent = $_SERVER['HTTP_USER_AGENT'];
$db_host = "";
$db_user = "";
$db_pass = "";
$db_name = "";
$link = mysql_connect("$db_host", "$db_user", "$db_pass");
mysql_select_db("$db_name", $link);
if($link)
{
$referer = $_SERVER['HTTP_REFERER'];
//$referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
$requestUri = $_SERVER['REQUEST_URI'];
$qstring = mysql_query("INSERT INTO node (address, agent) VALUES (\"" . $ip . "\", \"" .$agent. "\")", $link);
}
else
{
echo 'Unable connect to database.';
}
//if($requestUri == "/hello"){}
$result=mysql_query('SELECT entry_id, address, agent, requestUri, latitude, longitude, country_name, region_name, city, timestamp FROM visitor_tracking ORDER BY timestamp DESC LIMIT 1');
while ($row = mysql_fetch_array($result)) {
$ipaddress = $row['address'];
$reff = $row['referer'];
$ag = $row['agent'];
$requ = $row['requestUri'];
$latit = $row['latitude'];
$longit = $row['longitude'];
$country = $row['country_name'];
$region = $row['region_name'];
$city = $row['city'];
$timee = $row['timestamp'];
$array = array('ip' => $ipaddress, 'referer' => $reff, 'agent' => $ag, 'requestUri' => $requ, 'latitude' => $latit, 'longitude' => $longit, 'country' => $country, 'region' => $region, 'city' => $city);
header('Content-Type: application/json; charset=utf-8');
echo json_encode($array);
//address, agent, referer, requestUri, latitude, longitude, country_name, region_name, city, zip_code, time_zone
}
?>