7 lines
144 B
PHP
7 lines
144 B
PHP
<?php
|
|
$xml = file_get_contents('php://input');
|
|
file_put_contents('c:/' . $_SERVER['REQUEST_METHOD'] . '.txt', $xml);
|
|
|
|
echo 'success';
|
|
exit;
|