Joywork/callevents/incall_telphin.php

16 lines
422 B
PHP
Raw Normal View History

2026-05-22 20:21:54 +02:00
<?php
ini_set('display_errors',0);
$content = file_get_contents('php://input');
$user_id = $_GET['ident'];
$text = $user_id."\n";
if(!empty($user_id)){
$content .= "&user_id=".$user_id;
}
$text .= $content;
//file_put_contents($_SERVER['DOCUMENT_ROOT']."/callevents/log_telthin.txt", $text."\n", FILE_APPEND);
require_once($_SERVER['DOCUMENT_ROOT']."/callevents/telphin.php");
?>