7 lines
186 B
PHP
7 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
$client_data = file_get_contents("php://input");
|
||
|
$myfile = fopen("newfile.json", "w") or die("Unable to open file!");
|
||
|
$txt = $client_data;
|
||
|
fwrite($myfile, $txt);
|
||
|
fclose($myfile);
|