You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
409 B

<?php
include './functions.php';
$fp=$_REQUEST['fp'];
$ip=$_REQUEST['ip'];
$from=$_SERVER['HTTP_REFERER'];
$domain=$_SERVER['HTTP_HOST'];
session_start();
$_SESSION['s_fp']=$fp;
$_SESSION['s_ip']=$ip;
db__pushData(db__connect(),"log",array("fp"=>$fp,"ip"=>$ip,"domain"=>$domain,"url"=>$from,"time"=>time()));
//echo json_encode(array("fp"=>$fp,"ip"=>$ip,"domain"=>$domain,"url"=>$from,"time"=>time()));