mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-04-29 18:59:20 +02:00
13 lines
238 B
PHP
13 lines
238 B
PHP
<?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";
|
|
?>
|