16 lines
422 B
PHP
16 lines
422 B
PHP
|
|
<?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");
|
||
|
|
|
||
|
|
?>
|