17 lines
348 B
PHP
17 lines
348 B
PHP
|
|
<?php
|
||
|
|
//$content = file_get_contents('php://input');
|
||
|
|
|
||
|
|
$content = '';
|
||
|
|
|
||
|
|
if(isset($_POST)){
|
||
|
|
$content .= json_encode($_POST);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
//file_put_contents($_SERVER['DOCUMENT_ROOT']."/callevents/log_mango.txt", $content."\n", FILE_APPEND);
|
||
|
|
require_once($_SERVER['DOCUMENT_ROOT']."/callevents/mango.php");
|
||
|
|
|
||
|
|
|
||
|
|
header('Content-Type: application/json');
|
||
|
|
|