6 lines
159 B
PHP
6 lines
159 B
PHP
|
<?php
|
||
|
// Take a POST HTTP request and save it as a file.
|
||
|
$vFile = "json/spaces2017.json";
|
||
|
|
||
|
file_put_contents($vFile, file_get_contents("php://input"));
|
||
|
?>
|