Files
interactive/gms/KT/httpd/wwwroot/sh_monitor/ics/payment.php
T
2026-08-07 17:38:18 +09:00

15 lines
288 B
PHP

<?php
$handle = fopen("./payment.log", "a");
#fwrite($handle, $_SERVER['REMOTE_ADDR'] );
#$body = http_get_request_body();
$body = @file_get_contents('php://input');
#fwrite($handle, $body);
$log = $_SERVER['REMOTE_ADDR']." => ".$body."\n";
fwrite($handle, $log);
fclose($handle);
?>