<?php
$json = file_get_contents('php://input');
$data = json_decode($json, true);
file_put_contents('Doc1.txt', serialize($data)); 
echo "{}"; 
?>
