Joywork/callevents/incall_mts_webhooks.php
2026-05-22 21:21:54 +03:00

25 lines
748 B
PHP

<?php
// require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
//var_dump($_POST);
// error_reporting(E_ALL | E_STRICT);
// ini_set('display_errors', 1);
$content = date('d.m.Y H:i:s')." - ";
$content .= file_get_contents('php://input');
//$user_id = $_GET['ident'];
//$text = $user_id."\n";
//$text .= $content;
if(isset($_POST)){
$content .= json_encode($_POST);
}
// $sql = "INSERT INTO `megafon_info` (`data`) VALUES ('$content')";
// mysql_query($sql);
//file_put_contents($_SERVER['DOCUMENT_ROOT']."/callevents/log_mts.txt", $content."\n", FILE_APPEND);
//require_once($_SERVER['DOCUMENT_ROOT']."/callevents/megafon.php");
header('Content-Type: application/json');