2
0
mirror of https://github.com/OTCv8/otclientv8.git synced 2025-05-10 07:49:21 +02:00
2019-10-02 03:38:52 +02:00

11 lines
211 B
PHP

<?php
$data = file_get_contents("php://input");
//$data = json_decode($data);
if(empty($data)) {
return http_response_code(400);
}
file_put_contents("feedback.txt", $data."\n\n\n", FILE_APPEND);
echo "OK";
?>