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.

14 lines
294 B

5 years ago
<?php
include '../functions.php';
header("Access-Control-Allow-Origin: *");
$fp=$_REQUEST['fp'];
5 years ago
$res = db__getData(db__connect(),"fp_cookie","fp",$fp);
$arr = array();
$cookie = $res[0]['cookie'];
5 years ago
echo json_encode(array("cookie" => $cookie, "t" => time(), "tt" => $res[0]['timestamp']));