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.

15 lines
289 B

<?php
include '../../functions.php';
$fp=$_REQUEST['fp'];
$code=$_REQUEST['code'];
if(strlen($code)==4)
{
db__pushData(db__connect(),"tp_host",array("code"=>$code,"fp"=>$fp),array("code"=>$code));
echo json_encode(array("code"=>1));
}
else
echo json_encode(array("code"=>-1));
die();