Version 0.95 BETA

This commit is contained in:
OTCv8
2019-10-02 03:38:52 +02:00
parent 9219c78f15
commit 5220a3bdd2
501 changed files with 38097 additions and 2 deletions

13
api/stats.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$data = file_get_contents("php://input");
$json = json_decode($data);
if(!$json || !$json->uid) {
die();
}
if($json->uid) {
file_put_contents("stats/".($json->uid).".log", "\n".$data."\n", FILE_APPEND);
}
echo "OK";
?>